DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
Log4NetModule.cs
Go to the documentation of this file.
1 using System;
2 
3 using Deveel.Data.Services;
4 
5 namespace Deveel.Data.Diagnostics {
6  public sealed class Log4NetModule : ISystemModule {
7  public string ModuleName {
8  get { return "DeveelDB.Log4Net"; }
9  }
10 
11  public string Version {
12  get { return typeof (Log4NetModule).Assembly.GetName().Version.ToString(); }
13  }
14 
15  public void Register(IScope systemScope) {
16  // TODO:
17  }
18  }
19 }
void Register(IScope systemScope)