Server.Infrastructure.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, params Object[] objects)
        {
            LogAction(LogLevel.Debug, message, objects);
        }