Skip to content

Commit

Permalink
Job deletions are normal, don't throw warning (#1252)
Browse files Browse the repository at this point in the history
Closes #1250
  • Loading branch information
tresf committed Apr 15, 2024
1 parent 6e1a503 commit 13b5c28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/qz/printer/status/job/NativeJobStatus.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ public enum NativeJobStatus implements NativeStatus {
ABORTED(Level.ERROR),
CANCELED(Level.WARN),
COMPLETE(Level.INFO),
DELETED(Level.WARN),
DELETING(Level.WARN),
DELETED(Level.INFO),
DELETING(Level.INFO),
ERROR(Level.ERROR),
OFFLINE(Level.ERROR),
PRINTING(Level.INFO),
Expand Down

0 comments on commit 13b5c28

Please sign in to comment.