Skip to content

Commit

Permalink
Merge pull request #2688 from AlexDickerson/fixLogLevel
Browse files Browse the repository at this point in the history
Fixing incorrect log level
  • Loading branch information
tr4wzified authored Jan 22, 2025
2 parents 6e372e7 + 4a64904 commit e2e9770
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Wabbajack.App.Wpf/View Models/Compilers/CompilerVM.cs
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ await _wjClient.PublishModlist(MachineUrl, System.Version.Parse(Version),
StatusProgress = Percent.Zero;

State = CompilerState.Errored;
_logger.LogInformation(ex, "Failed Compilation : {Message}", ex.Message);
_logger.LogError(ex, "Failed Compilation : {Message}", ex.Message);
return Disposable.Empty;
});
}
Expand Down

0 comments on commit e2e9770

Please sign in to comment.