Skip to content

Commit

Permalink
io: set proper log level to DEBUG
Browse files Browse the repository at this point in the history
It should be DEBUG because it doesn't cause problem by itself.
This message is logged when mapped area for indexes is unmapped.
  • Loading branch information
kenhys committed Oct 4, 2017
1 parent 15ee139 commit b042a32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/io.c
Original file line number Diff line number Diff line change
Expand Up @@ -1359,7 +1359,7 @@ grn_io_expire(grn_ctx *ctx, grn_io *io, int count_thresh, uint32_t limit)
break;
}
if (n) {
GRN_LOG(ctx, GRN_LOG_INFO, "<%p:%x> expired i=%p max=%d (%d/%d)",
GRN_LOG(ctx, GRN_LOG_DEBUG, "<%p:%x> expired i=%p max=%d (%d/%d)",
ctx, grn_gtick, io, io->max_map_seg, n, ln);
}
return n;
Expand Down

0 comments on commit b042a32

Please sign in to comment.