static char l_new_default_format[] = "%Y%m%d-%H%M%S";
#define TIMEFORMAT_LEN 50
#define TID_LEN 30
+#define YLOG_LEVEL_MASK (YLOG_FATAL | YLOG_WARN | YLOG_LOG | YLOG_DEBUG )
+
static char l_custom_format[TIMEFORMAT_LEN] = "";
static char *l_actual_format = l_old_default_format;
};
static unsigned int next_log_bit = YLOG_LAST_BIT<<1; /* first dynamic bit */
+static unsigned int module_logs = YLOG_LAST_BIT<<1; /* first dynamic bit */
static void internal_log_init(void)
{
}
}
+static int is_module_log(int level) {
+ return level >= module_logs;
+}
void yaz_log(int level, const char *fmt, ...)
{
va_list ap;
internal_log_init();
if (!(level & l_level))
return;
+ /* Modules without log level should log (as before) */
+ /* if there exists a log level as well this should be respected. */
+ if (is_module_log(level)) {
+ int module_log_level;
+ module_log_level = level & YLOG_LEVEL_MASK;
+ if (module_log_level != 0) {
+ if (!(module_log_level & l_level))
+ return;
+ }
+ }
va_start(ap, fmt);
/* 30 is enough for our 'rest of output' message */