Skip to content

Commit

Permalink
fix(log4j): fix exception info
Browse files Browse the repository at this point in the history
  • Loading branch information
zhonghou3 authored and superhx committed Jan 8, 2025
1 parent f2e858e commit 962fdbd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ public void validate() {
throw new IllegalArgumentException("Level cannot be blank");
}
if (StringUtils.isBlank(logger)) {
throw new IllegalArgumentException("Level cannot be blank");
throw new IllegalArgumentException("Logger cannot be blank");
}
if (StringUtils.isBlank(message)) {
throw new IllegalArgumentException("Level cannot be blank");
throw new IllegalArgumentException("Message cannot be blank");
}
}

Expand Down

0 comments on commit 962fdbd

Please sign in to comment.