12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- using System;
- using BepInEx.Logging;
- namespace BepInEx
- {
-
-
-
- [Obsolete("This class has been deprecated; please use the Logger static class and BaseLogger implementations", true)]
- public static class BepInLogger
- {
-
-
-
-
-
- public delegate void EntryLoggedEventHandler(string entry, bool show = false);
-
-
-
- public static event EntryLoggedEventHandler EntryLogged;
-
-
-
-
-
- public static void Log(string entry, bool show = false)
- {
- Logger.Log(show ? LogLevel.Message : LogLevel.Info, entry);
- EntryLogged?.Invoke(entry, show);
- }
-
-
-
-
-
-
- public static void Log(object entry, bool show, ConsoleColor color)
- {
- Log(entry.ToString(), show);
- }
-
-
-
-
-
-
- public static void Log(string entry, bool show, ConsoleColor color)
- {
- Log(entry, show);
- }
- }
- }
|