Skip to content

Instantly share code, notes, and snippets.

@fclairamb
Last active July 6, 2023 13:41
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save fclairamb/7441750 to your computer and use it in GitHub Desktop.
Save fclairamb/7441750 to your computer and use it in GitHub Desktop.
Simple C logging code
#include "log.h"
unsigned char log_run_level = LOG_LVL_DEBUG;
const char * log_level_strings [] = {
"NONE", // 0
"CRIT", // 1
"WARN", // 2
"NOTI", // 3
" LOG", // 4
"DEBG" // 5
};
#ifdef __cplusplus
extern "C" {
#endif
#include <stdio.h>
#include <stdlib.h>
enum {
LOG_LVL_NONE, // 0
LOG_LVL_CRITICAL, // 1
LOG_LVL_WARNING, // 2
LOG_LVL_NOTICE, // 3
LOG_LVL_LOG, // 4
LOG_LVL_DEBUG, // 5
LOG_LVL_NEVER // 6
};
#ifndef LOG_BUILD_LEVEL
#ifdef NDEBUG
#define LOG_BUILD_LEVEL LVL_LOG
#else
#define LOG_BUILD_LEVEL LVL_DEBUG
#endif
#endif
extern unsigned char log_run_level;
extern const char * log_level_strings [];
// The BUILD_LOG_LEVEL defines what will be compiled in the executable, in production
// it should be set to LVL_NOTICE
#ifndef LOG_FP
#ifdef stdout
#define LOG_FP stdout
#endif
#endif
#define LOG_SHOULD_I( level ) ( level <= LOG_BUILD_LEVEL && level <= log_run_level )
#ifdef WIN32
#define arg_def ...
#define arg_use __VA_ARGS__
#else
#define arg_def arg...
#define arg_use ##arg
#endif
#define LOG(level, fmt, arg_def) do { \
if ( LOG_SHOULD_I(level) ) { \
fprintf(LOG_FP, "[%s] %s:%d: " fmt "\n", log_level_strings[level], __FUNCTION__,__LINE__, arg_use); \
fflush( LOG_FP ); \
} \
} while(0)
#define LL_DEBUG( fmt, arg_def ) LOG( LOG_LVL_DEBUG, fmt, arg_use )
#define LL_LOG( fmt, arg_def ) LOG( LOG_LVL_LOG, fmt,arg_use )
#define LL_NOTICE( fmt,arg_def ) LOG( LOG_LVL_NOTICE, fmt, arg_use )
#define LL_WARNING( fmt, arg_def ) LOG( LOG_LVL_WARNING, fmt, arg_use )
#define LL_CRITICAL( fmt, arg_def ) LOG( LOG_LVL_CRITICAL, fmt, arg_use )
#ifdef __cplusplus
}
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment