From aff64937000fbce5c55b49bee98f0120e09e399e Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Sun, 10 May 2026 15:16:48 -0400 Subject: Implement logging facility WARN, INFO, DEBUG * The original macros have been updated * Default log level is WARN * Log level increases per `-v` CLI argument * Tests always use DEBUG level --- tests/include/testing.h | 1 + 1 file changed, 1 insertion(+) (limited to 'tests/include/testing.h') diff --git a/tests/include/testing.h b/tests/include/testing.h index e446908..728b6a6 100644 --- a/tests/include/testing.h +++ b/tests/include/testing.h @@ -214,6 +214,7 @@ inline void stasis_testing_teardown_workspace() { SYSERROR("%s", "Unable to determine current working directory"); \ exit(1); \ } \ + LOG_LEVEL = LOG_LEVEL_DEBUG; \ atexit(stasis_testing_record_result_summary); \ atexit(stasis_testing_teardown_workspace); \ stasis_testing_setup_workspace(); \ -- cgit