From 841b692727c36c3dab46fded936032a0eae00ebd Mon Sep 17 00:00:00 2001 From: Chris Cameron Date: Wed, 23 Jun 2021 14:11:37 -0400 Subject: [PATCH] feat: Added Flush() method to ILoggerService --- ICD.Common.Utils/Services/Logging/ILoggerService.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ICD.Common.Utils/Services/Logging/ILoggerService.cs b/ICD.Common.Utils/Services/Logging/ILoggerService.cs index 6f46cd5..2bc8554 100644 --- a/ICD.Common.Utils/Services/Logging/ILoggerService.cs +++ b/ICD.Common.Utils/Services/Logging/ILoggerService.cs @@ -53,6 +53,11 @@ namespace ICD.Common.Utils.Services.Logging [PublicAPI] [NotNull] IEnumerable> GetHistory(); + + /// + /// Writes all enqueued logs. + /// + void Flush(); } ///