Log.cs 339 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.IO;
  3. using System.Text;
  4. namespace Base
  5. {
  6. public static class Log
  7. {
  8. public static void Warning(string msg)
  9. {
  10. }
  11. public static void Info(string msg)
  12. {
  13. }
  14. public static void Error(string msg)
  15. {
  16. }
  17. public static void Debug(string msg)
  18. {
  19. }
  20. public static void Flush()
  21. {
  22. }
  23. }
  24. }