Class ConsoleLoggingHandler
- Namespace
- MonkeyLoader.Logging
- Assembly
- MonkeyLoader.dll
Implements an LoggingHandler that writes messages to the Console.
public sealed class ConsoleLoggingHandler : LoggingHandler
- Inheritance
-
ConsoleLoggingHandler
- Inherited Members
Fields
BLUE
public const string BLUE = "\u001b[94m"
Field Value
BOLD
public const string BOLD = "\u001b[1m"
Field Value
CYAN
public const string CYAN = "\u001b[96m"
Field Value
GRAY
public const string GRAY = "\u001b[97m"
Field Value
GREEN
public const string GREEN = "\u001b[92m"
Field Value
MAGENTA
public const string MAGENTA = "\u001b[95m"
Field Value
NOBOLD
public const string NOBOLD = "\u001b[22m"
Field Value
NOREVERSE
public const string NOREVERSE = "\u001b[27m"
Field Value
NORMAL
public const string NORMAL = "\u001b[39m"
Field Value
NOUNDERLINE
public const string NOUNDERLINE = "\u001b[24m"
Field Value
RED
public const string RED = "\u001b[91m"
Field Value
REVERSE
public const string REVERSE = "\u001b[7m"
Field Value
UNDERLINE
public const string UNDERLINE = "\u001b[4m"
Field Value
YELLOW
public const string YELLOW = "\u001b[93m"
Field Value
Properties
Connected
Gets whether this logging handler has somewhere to log.
public override bool Connected { get; }
Property Value
Remarks
For this logger, that means that the ConsoleHost process and named pipe connection to it are is available.
ConsoleHostConnected
Gets whether this logging handler has a connection to the ConsoleHost process and named pipe stream.
public static bool ConsoleHostConnected { get; }
Property Value
Instance
Gets the instance of the ConsoleLoggingHandler.
public static ConsoleLoggingHandler Instance { get; }
Property Value
ShouldBeConnected
Whether
public static bool ShouldBeConnected { get; }
Property Value
Methods
ConnectAsync(CancellationToken)
Asynchronously attempts to launch the ConsoleHost and connect to it via a named pipe until the CancellationToken is signalled.
public static Task<bool> ConnectAsync(CancellationToken cancellationToken)
Parameters
cancellationToken
CancellationTokenThe CancellationToken controlling how long attempts are made.
Returns
Debug(Func<object>)
Logs events considered to be useful during debugging when more granular information is needed.
public override void Debug(Func<object> messageProducer)
Parameters
Disconnect()
Kills the ConsoleHost process and disconnects the named pipe.
public static void Disconnect()
Error(Func<object>)
Logs that one or more functionalities are not working, preventing some from working correctly.
public override void Error(Func<object> messageProducer)
Parameters
Fatal(Func<object>)
Logs that one or more key functionalities, or the whole system isn't working.
public override void Fatal(Func<object> messageProducer)
Parameters
Flush()
Attempts to flush any not yet fully logged messages.
public override void Flush()
Info(Func<object>)
Logs that something happened, which is purely informative and can be ignored during normal use.
public override void Info(Func<object> messageProducer)
Parameters
Log(string, string)
Writes a message prefixed with a timestamp to the Console.
public void Log(string message, string textHighlight = "\u001b[39m")
Parameters
message
stringThe message to write.
textHighlight
stringOptional color / bold / underline codes to use for the message.
Trace(Func<object>)
Logs step by step execution of code that can be ignored during standard operation, but may be useful during extended debugging sessions.
public override void Trace(Func<object> messageProducer)
Parameters
TryConnect()
Gives TryConnect() 10s to attempt launching the ConsoleHost and connecting the named pipe.
public static void TryConnect()
Warn(Func<object>)
Logs that unexpected behavior happened, but work is continuing and the key functionalities are operating as expected.
public override void Warn(Func<object> messageProducer)