Abstractions.Logging.LibraryLogging.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[] args)
        {
            if (DebugEvent != null)
                DebugEvent(message, args);
        }