CI: increased code coverage

This commit is contained in:
SChernykh
2025-10-12 17:07:46 +02:00
parent 977cd73bbd
commit c490fe556a
3 changed files with 71 additions and 14 deletions

View File

@@ -584,7 +584,12 @@ struct DummyStream
#define LOGINFO(level, ...) SIDE_EFFECT_CHECK(level, log_category_prefix << __VA_ARGS__)
#define LOGWARN(level, ...) SIDE_EFFECT_CHECK(level, log_category_prefix << __VA_ARGS__)
#ifdef P2POOL_ABORT_ON_LOG_ERROR
#define LOGERR(level, ...) abort()
#else
#define LOGERR(level, ...) SIDE_EFFECT_CHECK(level, log_category_prefix << __VA_ARGS__)
#endif
#else