/// <inheritdoc />
 void IInteractiveLogger.Fatal(string message)
 {
     Fatal?.Invoke(message);
 }
 /// <inheritdoc />
 void IInteractiveLogger.Fatal(Exception exception)
 {
     Fatal?.Invoke(exception.ToString());
 }