jellyfin/MediaBrowser.Server.Implementations/HttpServer/SocketSharp/SocketSharpLogger.cs

51 lines
1.4 KiB
C#
Raw Normal View History

2014-09-04 03:44:40 +02:00
using MediaBrowser.Model.Logging;
using System;
namespace MediaBrowser.Server.Implementations.HttpServer.SocketSharp
{
2015-01-03 20:38:22 +01:00
public class SocketSharpLogger : SocketHttpListener.Logging.ILogger
2014-09-04 03:44:40 +02:00
{
private readonly ILogger _logger;
public SocketSharpLogger(ILogger logger)
{
_logger = logger;
}
public void Debug(string message, params object[] paramList)
{
_logger.Debug(message, paramList);
}
public void Error(string message, params object[] paramList)
{
_logger.Error(message, paramList);
}
public void ErrorException(string message, Exception exception, params object[] paramList)
{
_logger.ErrorException(message, exception, paramList);
}
public void Fatal(string message, params object[] paramList)
{
_logger.Fatal(message, paramList);
}
public void FatalException(string message, Exception exception, params object[] paramList)
{
_logger.FatalException(message, exception, paramList);
}
public void Info(string message, params object[] paramList)
{
_logger.Info(message, paramList);
}
public void Warn(string message, params object[] paramList)
{
_logger.Warn(message, paramList);
}
}
}