|
|
@ -1,4 +1,5 @@ |
|
|
|
using System; |
|
|
|
|
|
|
|
// ReSharper disable InconsistentNaming
|
|
|
|
|
|
|
|
namespace IPA.Logging |
|
|
@ -9,6 +10,7 @@ namespace IPA.Logging |
|
|
|
public abstract class Logger |
|
|
|
{ |
|
|
|
private static Logger _log; |
|
|
|
|
|
|
|
internal static Logger log |
|
|
|
{ |
|
|
|
get |
|
|
@ -18,6 +20,7 @@ namespace IPA.Logging |
|
|
|
return _log; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
internal static Logger updater => log.GetChildLogger("Updater"); |
|
|
|
internal static Logger libLoader => log.GetChildLogger("LibraryLoader"); |
|
|
|
internal static Logger loader => log.GetChildLogger("Loader"); |
|
|
@ -38,22 +41,27 @@ namespace IPA.Logging |
|
|
|
/// No associated level. These never get shown.
|
|
|
|
/// </summary>
|
|
|
|
None = 0, |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// A debug message.
|
|
|
|
/// </summary>
|
|
|
|
Debug = 1, |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// An informational message.
|
|
|
|
/// </summary>
|
|
|
|
Info = 2, |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// A warning message.
|
|
|
|
/// </summary>
|
|
|
|
Warning = 4, |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// An error message.
|
|
|
|
/// </summary>
|
|
|
|
Error = 8, |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// A critical error message.
|
|
|
|
/// </summary>
|
|
|
@ -70,22 +78,27 @@ namespace IPA.Logging |
|
|
|
/// Allow no messages through.
|
|
|
|
/// </summary>
|
|
|
|
None = Level.None, |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Only shows Debug messages.
|
|
|
|
/// </summary>
|
|
|
|
DebugOnly = Level.Debug, |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Only shows info messages.
|
|
|
|
/// </summary>
|
|
|
|
InfoOnly = Level.Info, |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Only shows Warning messages.
|
|
|
|
/// </summary>
|
|
|
|
WarningOnly = Level.Warning, |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Only shows Error messages.
|
|
|
|
/// </summary>
|
|
|
|
ErrorOnly = Level.Error, |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Only shows Critical messages.
|
|
|
|
/// </summary>
|
|
|
@ -95,14 +108,17 @@ namespace IPA.Logging |
|
|
|
/// Shows all messages error and up.
|
|
|
|
/// </summary>
|
|
|
|
ErrorUp = ErrorOnly | CriticalOnly, |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Shows all messages warning and up.
|
|
|
|
/// </summary>
|
|
|
|
WarningUp = WarningOnly | ErrorUp, |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Shows all messages info and up.
|
|
|
|
/// </summary>
|
|
|
|
InfoUp = InfoOnly | WarningUp, |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Shows all messages.
|
|
|
|
/// </summary>
|
|
|
@ -120,19 +136,22 @@ namespace IPA.Logging |
|
|
|
/// <param name="level">the level of the message</param>
|
|
|
|
/// <param name="message">the message to log</param>
|
|
|
|
public abstract void Log(Level level, string message); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// A basic log function taking an exception to log.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="level">the level of the message</param>
|
|
|
|
/// <param name="e">the exception to log</param>
|
|
|
|
public virtual void Log(Level level, Exception e) => Log(level, e.ToString()); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Sends a debug message.
|
|
|
|
/// Sends a debug message.
|
|
|
|
/// Equivalent to Log(Level.Debug, message);
|
|
|
|
/// <see cref="Log(Level, string)"/>
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="message">the message to log</param>
|
|
|
|
public virtual void Debug(string message) => Log(Level.Debug, message); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Sends an exception as a debug message.
|
|
|
|
/// Equivalent to Log(Level.Debug, e);
|
|
|
@ -140,13 +159,15 @@ namespace IPA.Logging |
|
|
|
/// </summary>
|
|
|
|
/// <param name="e">the exception to log</param>
|
|
|
|
public virtual void Debug(Exception e) => Log(Level.Debug, e); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Sends an info message.
|
|
|
|
/// Sends an info message.
|
|
|
|
/// Equivalent to Log(Level.Info, message).
|
|
|
|
/// <see cref="Log(Level, string)"/>
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="message">the message to log</param>
|
|
|
|
public virtual void Info(string message) => Log(Level.Info, message); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Sends an exception as an info message.
|
|
|
|
/// Equivalent to Log(Level.Info, e);
|
|
|
@ -154,13 +175,15 @@ namespace IPA.Logging |
|
|
|
/// </summary>
|
|
|
|
/// <param name="e">the exception to log</param>
|
|
|
|
public virtual void Info(Exception e) => Log(Level.Info, e); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Sends a warning message.
|
|
|
|
/// Sends a warning message.
|
|
|
|
/// Equivalent to Log(Level.Warning, message).
|
|
|
|
/// <see cref="Log(Level, string)"/>
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="message">the message to log</param>
|
|
|
|
public virtual void Warn(string message) => Log(Level.Warning, message); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Sends an exception as a warning message.
|
|
|
|
/// Equivalent to Log(Level.Warning, e);
|
|
|
@ -168,13 +191,15 @@ namespace IPA.Logging |
|
|
|
/// </summary>
|
|
|
|
/// <param name="e">the exception to log</param>
|
|
|
|
public virtual void Warn(Exception e) => Log(Level.Warning, e); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Sends an error message.
|
|
|
|
/// Sends an error message.
|
|
|
|
/// Equivalent to Log(Level.Error, message).
|
|
|
|
/// <see cref="Log(Level, string)"/>
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="message">the message to log</param>
|
|
|
|
public virtual void Error(string message) => Log(Level.Error, message); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Sends an exception as an error message.
|
|
|
|
/// Equivalent to Log(Level.Error, e);
|
|
|
@ -182,13 +207,15 @@ namespace IPA.Logging |
|
|
|
/// </summary>
|
|
|
|
/// <param name="e">the exception to log</param>
|
|
|
|
public virtual void Error(Exception e) => Log(Level.Error, e); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Sends a critical message.
|
|
|
|
/// Sends a critical message.
|
|
|
|
/// Equivalent to Log(Level.Critical, message).
|
|
|
|
/// <see cref="Log(Level, string)"/>
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="message">the message to log</param>
|
|
|
|
public virtual void Critical(string message) => Log(Level.Critical, message); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Sends an exception as a critical message.
|
|
|
|
/// Equivalent to Log(Level.Critical, e);
|
|
|
@ -197,4 +224,4 @@ namespace IPA.Logging |
|
|
|
/// <param name="e">the exception to log</param>
|
|
|
|
public virtual void Critical(Exception e) => Log(Level.Critical, e); |
|
|
|
} |
|
|
|
} |
|
|
|
} |