2017-02-20 20:50:58 +00:00
|
|
|
|
using System;
|
|
|
|
|
using MediaBrowser.Model.Logging;
|
|
|
|
|
|
2017-08-09 19:56:38 +00:00
|
|
|
|
namespace Emby.Server.Implementations.Logging
|
2017-02-20 20:50:58 +00:00
|
|
|
|
{
|
|
|
|
|
public class ConsoleLogger : IConsoleLogger
|
|
|
|
|
{
|
|
|
|
|
public void WriteLine(string message)
|
|
|
|
|
{
|
|
|
|
|
Console.WriteLine(message);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|