feat: Added Flush() method to ILoggerService

This commit is contained in:
Chris Cameron
2021-06-23 14:11:37 -04:00
parent 5f2c5e6dcb
commit 841b692727

View File

@@ -53,6 +53,11 @@ namespace ICD.Common.Utils.Services.Logging
[PublicAPI]
[NotNull]
IEnumerable<KeyValuePair<int, LogItem>> GetHistory();
/// <summary>
/// Writes all enqueued logs.
/// </summary>
void Flush();
}
/// <summary>