feat: ILogger WrapWith extension method added

This commit is contained in:
Syntriax 2025-07-21 10:25:33 +03:00
parent 65cfaf1b4a
commit 200e8ae7da

View File

@ -0,0 +1,6 @@
namespace Syntriax.Engine.Core.Debug;
public static class LoggerWrapperExtensions
{
public static ILogger WrapWith(this ILogger thisLogger, ILogger logger) => new LoggerWrapper(thisLogger, logger);
}