Log.cs 330 B

1234567891011121314
  1. using System;
  2. namespace Infrastructure
  3. {
  4. public class Log
  5. {
  6. public static void WriteLine(ConsoleColor color = ConsoleColor.Black, string msg = "")
  7. {
  8. Console.ForegroundColor = color;
  9. Console.WriteLine($"{DateTime.Now} {msg}");
  10. Console.ResetColor();
  11. }
  12. }
  13. }