修改测试

master
hang 2024-01-26 13:49:14 +08:00
parent 6c8244d36c
commit ebeef714b4
3 changed files with 19 additions and 9 deletions

View File

@ -14,9 +14,23 @@ namespace IRaCIS.Core.API
public static void Main(string[] args)
{
ImageManager.SetImplementation(WinFormsImageManager.Instance);
var logger = NLog.Web.NLogBuilder.ConfigureNLog("nlog.config").GetCurrentClassLogger();
try
{
logger.Debug("init main");
CreateHostBuilder(args).Build().Run();
}
catch (Exception exception)
{
//NLog: catch setup errors
logger.Error(exception, "Stopped program because of exception");
throw;
}
finally
{
// Ensure to flush and stop internal timers/threads before application-exit (Avoid segmentation fault on Linux)
NLog.LogManager.Shutdown();
}
}
@ -38,7 +52,7 @@ namespace IRaCIS.Core.API
{
logging.ClearProviders();
logging.SetMinimumLevel(Microsoft.Extensions.Logging.LogLevel.Trace);
}).UseSerilog()
}).UseNLog()
; // NLog: Setup NLog for Dependency injection;
}

View File

@ -116,9 +116,6 @@ namespace IRaCIS.Core.API
//});
Log.Logger = new LoggerConfiguration()
.WriteTo.Console() // 选择日志输出目标,可以选择文件、数据库等
.CreateLogger();
}
@ -169,7 +166,6 @@ namespace IRaCIS.Core.API
endpoints.MapControllers();
});
Log.Information("计费系统启动...");
}
}
}