Skip to content

Commit

Permalink
Use error log level when contract parsing fails (#3744)
Browse files Browse the repository at this point in the history
Co-authored-by: Christoph Stäbler <cstabler@redhat.com>
  • Loading branch information
knative-prow-robot and creydr committed Mar 8, 2024
1 parent 0da6205 commit ca09ace
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -98,7 +98,7 @@ public DataPlaneContract.Contract parseFromJson(final Reader content) throws IOE
this.parser.merge(content, contract);
return contract.build();
} catch (final InvalidProtocolBufferException ex) {
logger.debug("failed to parse from JSON", ex);
logger.error("failed to parse from JSON", ex);
}
return null;
}
Expand Down

0 comments on commit ca09ace

Please sign in to comment.