X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=src%2Flog.h;h=9abb49f7bb06ee4582d0489ea12a7041e5ffcbda;hb=f3ca90e517a9ae54e831e5a5b91fcc2afb9df5bf;hp=041f45318076b1816a04e2f2352980eb6868956d;hpb=946885b04de70f8481f58160de12f3ee3b0b380a;p=tlsproxy%2Ftlsproxy.git diff --git a/src/log.h b/src/log.h index 041f453..9abb49f 100644 --- a/src/log.h +++ b/src/log.h @@ -1,7 +1,7 @@ /* * Log related functions/defines. * - * Copyright (C) 2011 Simon Ruderich + * Copyright (C) 2011-2013 Simon Ruderich * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -20,28 +20,24 @@ #ifndef LOG_H #define LOG_H +/* Log constants to be used with LOG() and LOG_PERROR() macros. */ +#define ERROR LOG_ERROR_LEVEL, __FILE__, __LINE__ +#define WARNING LOG_WARNING_LEVEL, __FILE__, __LINE__ +#define DEBUG1 LOG_DEBUG1_LEVEL, __FILE__, __LINE__ + /* Log level constants. */ -#define LOG_ERROR 0 -#define LOG_WARNING 1 -#define LOG_DEBUG 2 +#define LOG_ERROR_LEVEL 0 +#define LOG_WARNING_LEVEL 1 +#define LOG_DEBUG1_LEVEL 2 -/* Helper macro for LOG/LOG_PERROR. Print file/line number if compiled with - * debug output. */ -#ifdef DEBUG -#define LOG_PRINT_LOCATION fprintf(stdout, "%-12s:%-3d ", __FILE__, __LINE__); -#else -#define LOG_PRINT_LOCATION -#endif /* Call log_message() and print current file and line number. */ #define LOG \ - LOG_PRINT_LOCATION \ log_message /* perror() replacement with debug level support. */ #define LOG_PERROR(level, message) \ - LOG_PRINT_LOCATION \ log_message(level, "%s: %s", message, strerror(errno)) -void log_message(int level, const char *format, ...); +void log_message(int level, const char *file, int line, const char *format, ...); #endif