aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenGridServices
diff options
context:
space:
mode:
Diffstat (limited to 'OpenGridServices')
-rw-r--r--OpenGridServices/OpenGrid.Framework.Data/ILogData.cs20
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 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5namespace 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}