-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6a66a1a
commit 5899f3b
Showing
3 changed files
with
62 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/*-*- Mode: C; c-basic-offset: 8 -*-*/ | ||
|
||
#ifdef HAVE_CONFIG_H | ||
#include <config.h> | ||
#endif | ||
|
||
#include <stdarg.h> | ||
#include <stdio.h> | ||
|
||
#include "log.h" | ||
|
||
void log_meta( | ||
int level, | ||
const char*file, | ||
int line, | ||
const char *func, | ||
const char *format, ...) { | ||
|
||
const char *prefix, *suffix; | ||
va_list ap; | ||
|
||
if (LOG_PRI(level) <= LOG_ERR) { | ||
prefix = "\x1B[1;31m"; | ||
suffix = "\x1B[0m"; | ||
} else { | ||
prefix = ""; | ||
suffix = ""; | ||
} | ||
|
||
va_start(ap, format); | ||
|
||
fprintf(stderr, "(%s:%u) %s", file, line, prefix); | ||
vfprintf(stderr, format, ap); | ||
fprintf(stderr, "%s\n", suffix); | ||
|
||
va_end(ap); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/*-*- Mode: C; c-basic-offset: 8 -*-*/ | ||
|
||
#ifndef foologhfoo | ||
#define foologhfoo | ||
|
||
#include <syslog.h> | ||
|
||
#include "macro.h" | ||
|
||
void log_meta( | ||
int level, | ||
const char*file, | ||
int line, | ||
const char *func, | ||
const char *format, ...) __printf_attr(5,6); | ||
|
||
#define log_debug(...) log_meta(LOG_DEBUG, __FILE__, __LINE__, __func__, __VA_ARGS__) | ||
#define log_info(...) log_meta(LOG_INFO, __FILE__, __LINE__, __func__, __VA_ARGS__) | ||
#define log_notice(...) log_meta(LOG_NOTICE, __FILE__, __LINE__, __func__, __VA_ARGS__) | ||
#define log_warning(...) log_meta(LOG_WARNING, __FILE__, __LINE__, __func__, __VA_ARGS__) | ||
#define log_error(...) log_meta(LOG_ERR, __FILE__, __LINE__, __func__, __VA_ARGS__) | ||
|
||
#endif |