aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenGridServices/OpenGrid.Framework.Data/ILogData.cs
blob: 511011e98b71bb8c122e5422c56b4c0b256d38fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Collections.Generic;
using System.Text;

namespace OpenGrid.Framework.Data
{
    public enum LogSeverity : int
    {
        CRITICAL = 1,
        MAJOR = 2,
        MEDIUM = 3,
        LOW = 4,
        INFO = 5,
        VERBOSE = 6
    }
    public interface ILogData
    {
        void saveLog(string serverDaemon, string methodCall, string arguments, int priority,string logMessage);
    }
}