初始刷
This commit is contained in:
14
Infrastructure/Log.cs
Normal file
14
Infrastructure/Log.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
|
||||
namespace Infrastructure
|
||||
{
|
||||
public class Log
|
||||
{
|
||||
public static void WriteLine(ConsoleColor color = ConsoleColor.Black, string msg = "")
|
||||
{
|
||||
Console.ForegroundColor = color;
|
||||
Console.WriteLine($"{DateTime.Now} {msg}");
|
||||
Console.ResetColor();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user