Mycroft.Logger.Error C# (CSharp) Method

Error() public method

Log an error-level message
public Error ( string message ) : bool
message string the message to log
return bool
        public bool Error(string message)
        {
            return Log(Level.Error, message);
        }