From 6d35283ef01114475b6069f1a3c24e3b537bd510 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Wed, 1 Nov 2023 15:22:47 +0000 Subject: Clearer VERBOSE messages --- vm/runtime.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'vm/runtime.c') diff --git a/vm/runtime.c b/vm/runtime.c index 998bdc3..e6fb654 100644 --- a/vm/runtime.c +++ b/vm/runtime.c @@ -299,7 +299,8 @@ err_t vm_execute_all(vm_t *vm) } #if VERBOSE >= 1 - fprintf(stdout, "[vm_execute_all]: Final VM state(Cycle %lu)\n", cycles); + fprintf(stdout, "[%svm_execute_all%s]: Final VM state(Cycle %lu)\n", + TERM_YELLOW, TERM_RESET, cycles); vm_print_all(vm, stdout); #endif return err; -- cgit v1.2.3-13-gbd6f