Interface ILogger.IManagedInterface
Represents the managed interface implemented by its unmanaged counterpart.
public interface ILogger.IManagedInterface : IUnmanagedInterface
- Inherited Members
Methods
LogLine(LogLevel, string)
Logs a new line to the console with the specified severity level.
void LogLine(LogLevel level, string msg)
Parameters
LogLn(LogLevel, byte*)
Prints a new line to the console with the specified severity level.
void LogLn(LogLevel level, byte* msg)
Parameters
LogLnU8(LogLevel, byte*)
Prints a new line to the console of the specified log type in UTF-8 encoding.
void LogLnU8(LogLevel level, byte* msg)
Parameters
PrintLine(string)
Prints a new line to the console.
void PrintLine(string msg)
Parameters
msgstringThe message to log.
PrintLn(byte*)
Prints a new line to the console.
void PrintLn(byte* msg)
Parameters
msgbyte*The message to log.
PrintLnU8(byte*)
Prints a new line to the console in UTF-8 encoding.
void PrintLnU8(byte* msg)
Parameters
msgbyte*The message to log.