Skip to content

Commit

Permalink
fix(Sentry): Fix spamming sentry with error that can't be fixed
Browse files Browse the repository at this point in the history
Fixes SOUNDSWITCH-BV
  • Loading branch information
Belphemur committed Jun 4, 2022
1 parent 3e7b27e commit a74a76f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public Task ExecuteAsync(CancellationToken cancellationToken)

public Task OnFailure(JobException exception)
{
_logger.Error(exception, "Can't refresh devices");
_logger.Warning(exception, "Can't refresh devices");
return Task.CompletedTask;
}

Expand Down

0 comments on commit a74a76f

Please sign in to comment.