Mycroft.Logger.Debug C# (CSharp) Method

Debug() public method

Log a debug-level message
public Debug ( string message ) : bool
message string the message to log
return bool
        public bool Debug(string message)
        {
            return Log(Level.Debug, message);
        }