Skip to content

Commit

Permalink
LogHelper bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
279328316 committed Feb 5, 2021
1 parent 77ccab0 commit 5215a5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Jc.Util/LogHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public static void SetErrorLogger(string repositoryName, string errorLoggerName)
ILoggerRepository repository = LogManager.GetAllRepositories().FirstOrDefault(a => a.Name == repositoryName);
if (repository != null)
{
Logger = LogManager.GetLogger(repository.Name, errorLoggerName);
ErrorLogger = LogManager.GetLogger(repository.Name, errorLoggerName);
}
}

Expand Down

0 comments on commit 5215a5f

Please sign in to comment.