first commit

This commit is contained in:
Chris
2025-03-12 14:22:16 -04:00
commit 0ad0c01249
1999 changed files with 189708 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
namespace SingularityGroup.HotReload {
/// <summary>
/// Utility class to set the log level of the Hot Reload package
/// </summary>
public static class HotReloadLogging {
/// <summary>
/// Sets the log level for logs inside the Hot Reload package
/// The default log level is <see cref="LogLevel.Info"/>
/// </summary>
/// <remarks>
/// To see more detailed logs, set the log level to <see cref="LogLevel.Debug"/>
/// </remarks>
public static void SetLogLevel(LogLevel level) {
Log.minLevel = level;
}
}
}