You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
399 B
17 lines
399 B
using MediaBrowser.Common.Kernel;
|
|
using System;
|
|
|
|
namespace MediaBrowser.Common.Logging
|
|
{
|
|
public abstract class BaseLogger : IDisposable
|
|
{
|
|
public abstract void Initialize(IKernel kernel);
|
|
public abstract void LogEntry(LogRow row);
|
|
|
|
public virtual void Dispose()
|
|
{
|
|
Logger.LogInfo("Disposing " + GetType().Name);
|
|
}
|
|
}
|
|
}
|