Skip to content

Commit

Permalink
downgrade log levels for a few non-critical messages
Browse files Browse the repository at this point in the history
  • Loading branch information
yamt committed Jun 1, 2023
1 parent 8c26da3 commit 6a529be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/module.c
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ read_resulttype(const uint8_t **pp, const uint8_t *ep, struct resulttype *rt,
ret = populate_resulttype_cellidx(rt);
if (ret != 0) {
/* this failure is not critical. let's ignore. */
xlog_error("populate_resulttype_cellidx failed with "
xlog_trace("populate_resulttype_cellidx failed with "
"%d. It can cause very slow execution.",
ret);
}
Expand Down Expand Up @@ -858,7 +858,7 @@ read_locals(const uint8_t **pp, const uint8_t *ep, struct func *func,
ret = populate_localtype_cellidx(lt);
if (ret != 0) {
/* this failure is not critical. let's ignore. */
xlog_error("populate_localtype_cellidx failed with "
xlog_trace("populate_localtype_cellidx failed with "
"%d. It can cause very slow execution.",
ret);
lt->localchunks = NULL;
Expand Down

0 comments on commit 6a529be

Please sign in to comment.