class Logger
in global :: Sandbox . Diagnostics
😔 No documentation found.
public string Name { get; }
Name of this logger.
public void Info( FormattableString message )
🤡 Doc inheritance is not yet supported.
No summary.
public void Trace( FormattableString message )
🤡 Doc inheritance is not yet supported.
No summary.
public void Warning( FormattableString message )
🤡 Doc inheritance is not yet supported.
No summary.
public void Error( FormattableString message )
🤡 Doc inheritance is not yet supported.
No summary.
public void Error( Exception exception, FormattableString message )
🤡 Doc inheritance is not yet supported.
No summary.
public void Error( Exception exception, object message )
Log an exception as an error, with given message override.
exceptionThe exception to log.messageThe text to override exceptions' message with in the log.
public void Error( Exception exception )
Log an exception as an error.
exceptionThe exception to log.
public void Warning( Exception exception, FormattableString message )
🤡 Doc inheritance is not yet supported.
No summary.
public void Warning( Exception exception, object message )
Log an exception as a warning, with given message override.
exceptionThe exception to log.messageThe text to override exceptions' message with in the log.
public void Info( object message )
Log some information. This is the default log severity level.
messageThe information to log.
public void Trace( object message )
Log some information. This is least severe log level.
messageThe information to log.
public void Warning( object message )
Log a warning. This is the second most severe log level.
messageThe warning to log.
public void Error( object message )
Log an error. This is the most severe log level.
messageThe error to log.
public Type GetType( )
😔 No documentation found.
public string ToString( )
😔 No documentation found.
public bool Equals( object obj )
😔 No documentation found.
public int GetHashCode( )
😔 No documentation found.
public Logger( string name )
😔 No documentation found.