Issue w/ Sumo Simulation
http://localhost:50000/console/output --> Does not seem to display the log messages I see written into the code. Is there a way that it got switched off in the code? Or am I looking in the wrong place?
Thanks,
David
Thanks,
David
Most of the debug information that the sumo player spews is done using LogVerbose() calls. Verbose log messages are not sent to the console by default and that is why you are not seeing them. You can do one of the following things to fix this:
1. Change any interesting LogVerbose() calls to LogInfo() calls. Info-level calls are sent by default to the console.
2. Change the appropriate trace level in dsshost.exe.config to allow verbose-level messages to be sent. This can be done by editing the dsshost.exe.config file in the bin directory and changing the following line:
<add name="Microsoft.Dss.Services" value="3" />
to:
<add name="Microsoft.Dss.Services" value="4" />
-Kyle