Working on parent child for logging

This commit is contained in:
Janus Knudsen 2025-02-19 17:53:12 +01:00
parent e73f428c49
commit 5568007237
4 changed files with 355 additions and 288 deletions

View file

@ -49,7 +49,12 @@ namespace Core.Logging
await _seqLogger.LogAsync(et);
break;
default:
case EventTelemetry et:
await _seqLogger.LogAsync(et);
break;
default:
throw new NotSupportedException(telemetry.GetType().Name);
}
}