Files
kunshan-bzfm-mes-backend/Infrastructure/Log.cs

15 lines
330 B
C#
Raw Normal View History

2024-11-28 13:36:05 +08:00
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();
}
}
}