Looking @ Open Source and want to debug
I'm trying to look at an open source program but I can't do anything to fix it if I can't debug it, how do I print something via this line and where does it show up?
13 Replies
Check Logger class
Also, it might be using Debug.WriteLine which can only be seen when it's running in debug, and debug mode (not release).
Or it is just a wrapper which logs to file and writes to console
I never see a console
What IDE are you using?
Visual Studio Community
Can you screenshot how you start it?
Go to output view
Or check immediate window
ooh i see
ill try printing something
Or check build path for any kind of log files being written
gotcha