Mycroft.Logger.Info C# (CSharp) Method

Info() public method

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