merged plib
[ppastats.git] / src / plog.h
index 185af1a..29880e9 100644 (file)
@@ -19,7 +19,7 @@
 #ifndef _P_LOG_H_
 #define _P_LOG_H_
 
-#define P_LOG_VER 1
+#define P_LOG_VER 2
 
 enum log_level {
        LOG_ERR ,
@@ -29,6 +29,7 @@ enum log_level {
 };
 
 void log_open(const char *path);
+void log_close();
 
 void log_printf(int lvl, const char *fmt, ...);
 void log_debug(const char *fmt, ...);
@@ -36,7 +37,11 @@ void log_err(const char *fmt, ...);
 void log_info(const char *fmt, ...);
 void log_warn(const char *fmt, ...);
 
-void log_close();
+void _log(const char *fct, const char *fmt, ...);
+
+#define log_fct(...) _log(__func__, __VA_ARGS__)
+#define log_fct_enter() log_fct("ENTER")
+#define log_fct_exit() log_fct("EXIT")
 
 /* level of the log file. */
 extern int log_level;