Skip to content

Commit 453f989

Browse files
committed
zephyr/main: Don't unconditionally dump stats on each GC.
This was a debug output for initial porting, breaks tests.
1 parent d61ce32 commit 453f989

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

zephyr/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ void gc_collect(void) {
126126
gc_collect_start();
127127
gc_collect_root(&dummy, ((mp_uint_t)stack_top - (mp_uint_t)&dummy) / sizeof(mp_uint_t));
128128
gc_collect_end();
129-
gc_dump_info();
129+
//gc_dump_info();
130130
}
131131

132132
mp_lexer_t *mp_lexer_new_from_file(const char *filename) {

0 commit comments

Comments
 (0)