mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 16:22:50 +08:00
* Added ILogData interface to Grid.Framework.Data - to be used for saving log information to database (region connections, user connections, etc)
This commit is contained in:
20
OpenGridServices/OpenGrid.Framework.Data/ILogData.cs
Normal file
20
OpenGridServices/OpenGrid.Framework.Data/ILogData.cs
Normal file
@@ -0,0 +1,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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user