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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
/* $Id$
*
* FAUmachine logging facility.
*
* Copyright (C) 2005-2009 FAUmachine Team <info@faumachine.org>.
* This program is free software. You can redistribute it and/or modify it
* under the terms of the GNU General Public License, either version 2 of
* the License, or (at your option) any later version. See COPYING.
*/
/* enable printing of timestamps if set to 1 */
#define LOG_TIMESTAMP 0
#include <assert.h>
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#if LOG_TIMESTAMP == 1
#include <time.h>
#endif
#include "glue-log.h"
void
fauhdli_log(
enum fauhdli_log_level level,
const char *type,
const char *name,
const char *fmt,
...
)
{
va_list args;
char buffer[1024];
char *buf = buffer;
#if LOG_TIMESTAMP == 1
time_t t;
struct tm *lt;
size_t ret;
t = time(NULL);
lt = localtime(&t);
assert(lt != NULL);
ret = strftime(buf, sizeof(buffer), "%H:%M> ", lt);
buf += ret;
#endif
switch (level) {
case FAUHDLI_LOG_FATAL: strcpy(buf, "FATAL:"); break;
case FAUHDLI_LOG_CRITICAL: strcpy(buf, "CRITICAL:"); break;
case FAUHDLI_LOG_ERROR: strcpy(buf, "ERROR:"); break;
case FAUHDLI_LOG_WARNING: strcpy(buf, "WARNING:"); break;
case FAUHDLI_LOG_INFO: strcpy(buf, "INFO:"); break;
case FAUHDLI_LOG_DEBUG: strcpy(buf, "DEBUG:"); break;
default: assert(0);
}
strcat(buf, " ");
strcat(buf, type);
if (name[0] != '\0') {
strcat(buf, " ");
strcat(buf, name);
}
strcat(buf, ": ");
va_start(args, fmt);
vsprintf(buf + strlen(buf), fmt, args);
va_end(args);
fputs(buffer, stderr);
}
#undef LOG_TIMESTAMP
|