how to output message into the console with photon?

Options
oman
oman
edited June 2012 in Photon Server
how to output message into the console with photon ? is it possible?

Comments

  • Tobias
    Options
    We use Log4Net to write to logfiles. This is all over the place.
    E.g. have a look at: sdk\src-server\LoadBalancing\LoadBalancing\GameServer\Game.cs. In HandleDebugGameOperation():
    if (Log.IsInfoEnabled)
    {
    	Log.Info("DebugGame: " + debugInfo);
    }