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.

  • exception The exception to log.
  • message The text to override exceptions' message with in the log.

public void Error( Exception exception )

Log an exception as an error.

  • exception The 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.

  • exception The exception to log.
  • message The text to override exceptions' message with in the log.

public void Info( object message )

Log some information. This is the default log severity level.

  • message The information to log.

public void Trace( object message )

Log some information. This is least severe log level.

  • message The information to log.

public void Warning( object message )

Log a warning. This is the second most severe log level.

  • message The warning to log.

public void Error( object message )

Log an error. This is the most severe log level.

  • message The 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.