mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-01 07:26:26 +01:00
13 lines
268 B
C#
13 lines
268 B
C#
using System;
|
|
using MediaBrowser.Model.Logging;
|
|
|
|
namespace Emby.Server.Implementations.Logging
|
|
{
|
|
public class ConsoleLogger : IConsoleLogger
|
|
{
|
|
public void WriteLine(string message)
|
|
{
|
|
Console.WriteLine(message);
|
|
}
|
|
}
|
|
}
|