7 lines
		
	
	
		
			196 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			196 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace Engine.Core.Debug;
 | 
						|
 | 
						|
public static class LoggerWrapperExtensions
 | 
						|
{
 | 
						|
    public static ILogger WrapWith(this ILogger thisLogger, ILogger logger) => new LoggerWrapper(thisLogger, logger);
 | 
						|
}
 |