Skip to content

Commit

Permalink
Log viewer changes (#72)
Browse files Browse the repository at this point in the history
* Job canceled -> debug, not warn.
  • Loading branch information
CraigHawker committed Sep 13, 2022
1 parent 3955a40 commit 4fe8d95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MFiles.VAF.Extensions/TaskManagerLogger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ protected virtual void LogTaskUpdateFailedEvent(TaskManagerEventArgs args)
protected virtual void LogWaitingTasksCanceledEvent(TaskManagerEventArgs args)
{
// Log the event.
this.logger.Warn(args.Exception,
this.logger.Debug(args.Exception,
"Job canceled. " + GetEventDataString(args));
}

Expand Down

0 comments on commit 4fe8d95

Please sign in to comment.