mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 02:27:18 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			268 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 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);
 | |
|         }
 | |
|     }
 | |
| }
 |