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; } } }