feat(batch4-task2): implement core logger wiring features

This commit is contained in:
Joseph Doherty
2026-02-28 07:56:32 -05:00
parent 52cdc4c08a
commit b79e7aafe9
4 changed files with 497 additions and 0 deletions

View File

@@ -215,6 +215,8 @@ public sealed class MicrosoftLoggerAdapter : INatsLogger
public MicrosoftLoggerAdapter(ILogger logger) => _logger = logger;
internal ILogger UnderlyingLogger => _logger;
public void Noticef(string format, params object[] args) =>
_logger.LogInformation(format, args);