RobotLog.cs 291 B

1234567891011121314151617181920
  1. namespace ET.Server
  2. {
  3. public static class RobotLog
  4. {
  5. public static void Debug(string msg)
  6. {
  7. Log.Info(msg);
  8. }
  9. public static void Debug(string msg, params object[] args)
  10. {
  11. Log.Info(msg, args);
  12. }
  13. public static void Console(string msg)
  14. {
  15. Log.Console(msg);
  16. }
  17. }
  18. }