Issue w/ Sumo Simulation

I'm attempting to tune the logic within the Sumoplayer service, but I have not been able to access the debug information that is supposed to be in the console. Where can I access this information?
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

[434 byte] By [Nom_dMac] at [2008-3-1]
# 1

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
KyleJ-MSFT at 2007-9-25 > top of Msdn Tech,Microsoft Robotics Studio,Microsoft Robotics - Simulation...

Microsoft Robotics Studio

Site Classified