Server.Log.Debug C# (CSharp) Method

Debug() public static method

public static Debug ( string message ) : void
message string
return void
        public static void Debug(string message)
        {
            #if MF_FRAMEWORK_VERSION_V4_1
            Microsoft.SPOT.Debug.Print(message);
            #endif
        }