aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Logging/ConsoleLogger.cs
blob: 51199f08aec2ae52d1e92700272dd34f70dd25d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;
using MediaBrowser.Model.Logging;

namespace Emby.Server.Implementations.Logging
{
    public class ConsoleLogger : IConsoleLogger
    {
        public void WriteLine(string message)
        {
            Console.WriteLine(message);
        }
    }
}