Skip to content

Commit

Permalink
fix: add missing warn logLevel serialization
Browse files Browse the repository at this point in the history
  • Loading branch information
ttypic committed Oct 10, 2024
1 parent 4b7e96e commit d1ea4a6
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -398,6 +398,8 @@ private int decodeLogLevel(String logLevelString) {
return Log.INFO;
case PlatformConstants.TxLogLevelEnum.error:
return Log.ERROR;
case PlatformConstants.TxLogLevelEnum.warn:
return Log.WARN;
default:
throw SerializationException.forEnum(logLevelString, Log.class);
}
Expand Down

0 comments on commit d1ea4a6

Please sign in to comment.