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