diff options
-rw-r--r-- | OpenGridServices/OpenGrid.Framework.Data/ILogData.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/OpenGridServices/OpenGrid.Framework.Data/ILogData.cs b/OpenGridServices/OpenGrid.Framework.Data/ILogData.cs new file mode 100644 index 0000000..511011e --- /dev/null +++ b/OpenGridServices/OpenGrid.Framework.Data/ILogData.cs | |||
@@ -0,0 +1,20 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | |||
5 | namespace OpenGrid.Framework.Data | ||
6 | { | ||
7 | public enum LogSeverity : int | ||
8 | { | ||
9 | CRITICAL = 1, | ||
10 | MAJOR = 2, | ||
11 | MEDIUM = 3, | ||
12 | LOW = 4, | ||
13 | INFO = 5, | ||
14 | VERBOSE = 6 | ||
15 | } | ||
16 | public interface ILogData | ||
17 | { | ||
18 | void saveLog(string serverDaemon, string methodCall, string arguments, int priority,string logMessage); | ||
19 | } | ||
20 | } | ||