Skip to content

Commit a5863f1

Browse files
committed
Improve JIT diagnostic logging for CI visibility
This upgrades code_cache_flush logging from DEBUG to INFO level to make this critical event visible in CI test logs.
1 parent 9b5844b commit a5863f1

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/jit.c

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2168,9 +2168,8 @@ void clear_hot(block_t *block)
21682168

21692169
static void code_cache_flush(struct jit_state *state, riscv_t *rv)
21702170
{
2171-
rv_log_debug(
2172-
"JIT: Flushing code cache (n_blocks=%d, n_jumps=%d, offset=%u)",
2173-
state->n_blocks, state->n_jumps, state->offset);
2171+
rv_log_info("JIT: Flushing code cache (n_blocks=%d, n_jumps=%d, offset=%u)",
2172+
state->n_blocks, state->n_jumps, state->offset);
21742173
should_flush = false;
21752174
state->offset = state->org_size;
21762175
state->n_blocks = 0;

0 commit comments

Comments
 (0)