Skip to content

Commit

Permalink
Use error log level when contract parsing fails (#3742)
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 authored Mar 8, 2024
1 parent fc6f83e commit e2784be
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
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 e2784be

Please sign in to comment.