Skip to content

Commit 0f13d06

Browse files
committed
Change default log level from TRACE to INFO
The diagnostic logging added in the previous commit uses DEBUG level, which was being displayed because the default log level was set to TRACE. This caused CI test failures as the excessive debug output interfered with test output validation.
1 parent e6005e5 commit 0f13d06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ int main(int argc, char **args)
304304
.args_offset_size = ARGS_OFFSET_SIZE,
305305
.argc = prog_argc,
306306
.argv = prog_args,
307-
.log_level = LOG_TRACE,
307+
.log_level = LOG_INFO,
308308
.run_flag = run_flag,
309309
.profile_output_file = prof_out_file,
310310
.cycle_per_step = CYCLE_PER_STEP,

0 commit comments

Comments
 (0)