From a090ea8e471a529de763fa81034e236ed77723aa Mon Sep 17 00:00:00 2001 From: Jeroen Saey Date: Fri, 6 Feb 2026 09:49:27 +0100 Subject: [PATCH] Updated --- EonaCat.Logger/EonaCat.Logger.csproj | 6 +++--- EonaCat.Logger/LoggerConfigurator.cs | 5 +++++ 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/EonaCat.Logger/EonaCat.Logger.csproj b/EonaCat.Logger/EonaCat.Logger.csproj index afd2933..dc399b2 100644 --- a/EonaCat.Logger/EonaCat.Logger.csproj +++ b/EonaCat.Logger/EonaCat.Logger.csproj @@ -13,8 +13,8 @@ EonaCat (Jeroen Saey) EonaCat;Logger;EonaCatLogger;Log;Writer;Jeroen;Saey - 1.6.5 - 1.6.5 + 1.6.6 + 1.6.6 README.md True LICENSE @@ -25,7 +25,7 @@ - 1.6.5+{chash:10}.{c:ymd} + 1.6.6+{chash:10}.{c:ymd} true true v[0-9]* diff --git a/EonaCat.Logger/LoggerConfigurator.cs b/EonaCat.Logger/LoggerConfigurator.cs index a16b9d2..e6825af 100644 --- a/EonaCat.Logger/LoggerConfigurator.cs +++ b/EonaCat.Logger/LoggerConfigurator.cs @@ -33,6 +33,11 @@ namespace EonaCat.Logger target.MaskedKeywords = source.MaskedKeywords; target.IncludeCorrelationId = source.IncludeCorrelationId; target.EnableCategoryRouting = source.EnableCategoryRouting; + target.Category = source.Category; + target.LogDirectory = source.LogDirectory; + target.BatchSize = source.BatchSize; + target.Settings = source.Settings; + target.LoggerSettings = source.LoggerSettings; } } }