Fix build issue

This commit is contained in:
Jack251970 2025-04-01 11:56:51 +08:00
parent 1381248e9e
commit 835e4096c8

View file

@ -135,6 +135,15 @@ namespace Flow.Launcher.Infrastructure.Logger
return className;
}
#if !DEBUG
private static void ExceptionInternal(string classAndMethod, string message, System.Exception e)
{
var logger = LogManager.GetLogger(classAndMethod);
logger.Error(e, message);
}
#endif
private static void LogInternal(string message, LogLevel level)
{
if (FormatValid(message))