1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
/*
* ログの出力
*/
#include <stdio.h>
#include <stdarg.h>
#include <anthy/anthy.h>
#include <anthy/logger.h>
static void (*logger)(int lv, const char *str);
static int current_level = 1;
void
anthy_do_set_logger(void (*fn)(int lv, const char *str), int lv)
{
current_level = lv;
logger = fn;
/* to be implemented */
}
static void
do_log(int lv, const char *str, va_list arg)
{
if (lv < current_level) {
return ;
}
fprintf(stderr, "Anthy: ");
vfprintf(stderr, str, arg);
}
void
anthy_log(int lv, const char *str, ...)
{
va_list arg;
if (lv > current_level) {
return ;
}
va_start(arg, str);
do_log(lv, str, arg);
va_end(arg);
}
void
anthy_set_logger(anthy_logger lg, int level)
{
anthy_do_set_logger(lg, level);
}
|