Browse Source

Move Common Init Def

HOME 5 months ago
parent
commit
9377e7d029

+ 18 - 3
PCC.Shared/Common/Init/ConsoleApplication.cs

@@ -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;
+            });
+        });
+    }
+}

+ 1 - 12
PCC.Shared/Common/Init/GenericPurposeApplication.cs

@@ -10,16 +10,5 @@ public static class GenericPurposeApplication
         Encoding.RegisterProvider(CodePagesEncodingProvider.Instance);
     }
 
-    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;
-            });
-        });
-    }
+
 }