namespace SingularityGroup.HotReload { /// /// Utility class to set the log level of the Hot Reload package /// public static class HotReloadLogging { /// /// Sets the log level for logs inside the Hot Reload package /// The default log level is /// /// /// To see more detailed logs, set the log level to /// public static void SetLogLevel(LogLevel level) { Log.minLevel = level; } } }