Release v1.0.0 #16

Merged
Wesser merged 492 commits from release/v1.0.0 into master 2025-02-12 09:19:32 +03:00
239 changed files with 10436 additions and 98 deletions
Showing only changes of commit c7b401eae7 - Show all commits

View File

@ -28,7 +28,9 @@ public static class LoggerConfiguration
if (generalConfig?.EnableLogToFile == true) if (generalConfig?.EnableLogToFile == true)
{ {
if (!string.IsNullOrEmpty(generalConfig.LogFilePath) && Directory.Exists(PathBuilder.Combine(generalConfig.LogFilePath))) generalConfig.LogFilePath = PathBuilder.Combine(generalConfig.LogFilePath ?? string.Empty);
if (!string.IsNullOrEmpty(generalConfig.LogFilePath) && Directory.Exists(generalConfig.LogFilePath))
Directory.CreateDirectory(generalConfig.LogFilePath); Directory.CreateDirectory(generalConfig.LogFilePath);
configuration.WriteTo.File( configuration.WriteTo.File(