diff --git a/Aaru.Logging/AaruLogging.cs b/Aaru.Logging/AaruLogging.cs index 90529bb94..634be3068 100644 --- a/Aaru.Logging/AaruLogging.cs +++ b/Aaru.Logging/AaruLogging.cs @@ -111,23 +111,6 @@ public static class AaruLogging /// An array of objects to write using . public static void Write(string format, params object[] arg) => WriteEvent?.Invoke(format, arg); - /// Writes the specified string value, followed by the current line terminator, to the standard output console. - /// The value to write. - public static void WriteLine(string value) => WriteLineEvent?.Invoke("{0}", value); - - /// Writes the specified string value, followed by the current line terminator, to the error output console. - /// The value to write. - public static void Error(string value) => ErrorEvent?.Invoke("{0}", value); - - /// Writes the specified string value, followed by the current line terminator, to the verbose output console. - /// The value to write. - public static void Verbose(string value) => VerboseEvent?.Invoke("{0}", value); - - /// Writes the specified string value, followed by the current line terminator, to the debug output console. - /// Description of the module writing to the debug console - /// The value to write. - public static void Debug(string module, string value) => DebugEvent?.Invoke("[blue]({0}):[/] {1}", module, value); - /// /// Writes the exception to the debug output console. ///