Skip to content

Commit

Permalink
Merge pull request #554 from ably/ECO-5021/fix-log-serialization
Browse files Browse the repository at this point in the history
fix: add missing warn logLevel serialization
  • Loading branch information
ttypic authored Oct 10, 2024
2 parents 4b7e96e + d1ea4a6 commit ec88c86
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 ec88c86

Please sign in to comment.