123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- using System;
- namespace WWPipeLine.Commons
- {
- internal interface ILogger
- {
-
-
-
-
- void Trace(string message);
-
-
-
-
- void Debug(string message);
-
-
-
-
- void Fatal(string message);
-
-
-
-
- void Fatal(Exception ex);
-
-
-
-
- void Info(string message);
-
-
-
-
- void Warn(string message);
-
-
-
-
- void Error(string message);
-
-
-
-
- void Error(Exception ex);
-
-
-
- void Shutdown();
- }
- }
|