|
@@ -1,9 +1,24 @@
|
|
|
-namespace PCC.Common.Init;
|
|
|
+using Microsoft.Extensions.Logging.Console;
|
|
|
|
|
|
-public class ConsoleApplication
|
|
|
+namespace PCC.Common.Init;
|
|
|
+
|
|
|
+public static class ConsoleApplication
|
|
|
{
|
|
|
public static void Init()
|
|
|
{
|
|
|
GenericPurposeApplication.Init();
|
|
|
}
|
|
|
-}
|
|
|
+
|
|
|
+ public static void SetLogFormatForSimpleConsole(this IHostApplicationBuilder builder, bool singleLine = true, string timestampFormat = "[dd HH:mm:ss] ", LoggerColorBehavior colorBehavior = LoggerColorBehavior.Enabled)
|
|
|
+ {
|
|
|
+ builder.Services.AddLogging(opt =>
|
|
|
+ {
|
|
|
+ opt.AddSimpleConsole(p =>
|
|
|
+ {
|
|
|
+ p.TimestampFormat = timestampFormat;
|
|
|
+ p.SingleLine = singleLine;
|
|
|
+ p.ColorBehavior = colorBehavior;
|
|
|
+ });
|
|
|
+ });
|
|
|
+ }
|
|
|
+}
|