// SPDX-License-Identifier: LicenseRef-AGPL-3.0-only-OpenSSL #include "test_log.h" #include static bool initialized = false; static ChiakiLog log_quiet; ChiakiLog *get_test_log() { if(!initialized) chiaki_log_init(&log_quiet, 0, NULL, NULL); return &log_quiet; }