]> git.sur5r.net Git - i3/i3/blob - include/log.h
debian: add 4.1.2-2 upload to changelog
[i3/i3] / include / log.h
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * log.c: Setting of loglevels, logging functions.
8  *
9  */
10 #ifndef _LOG_H
11 #define _LOG_H
12
13 #include <stdarg.h>
14 #include <stdbool.h>
15
16 /** ##__VA_ARGS__ means: leave out __VA_ARGS__ completely if it is empty, that
17    is, delete the preceding comma */
18 #define LOG(fmt, ...) verboselog(fmt, ##__VA_ARGS__)
19 #define ELOG(fmt, ...) errorlog("ERROR: " fmt, ##__VA_ARGS__)
20 #define DLOG(fmt, ...) debuglog(LOGLEVEL, "%s:%s:%d - " fmt, __FILE__, __FUNCTION__, __LINE__, ##__VA_ARGS__)
21
22 extern char *loglevels[];
23 extern char *errorfilename;
24
25 /**
26  * Initializes logging by creating an error logfile in /tmp (or
27  * XDG_RUNTIME_DIR, see get_process_filename()).
28  *
29  */
30 void init_logging();
31
32 /**
33  * Enables the given loglevel.
34  *
35  */
36 void add_loglevel(const char *level);
37
38 /**
39  * Set verbosity of i3. If verbose is set to true, informative messages will
40  * be printed to stdout. If verbose is set to false, only errors will be
41  * printed.
42  *
43  */
44 void set_verbosity(bool _verbose);
45
46 /**
47  * Logs the given message to stdout while prefixing the current time to it,
48  * but only if the corresponding debug loglevel was activated.
49  *
50  */
51 void debuglog(uint64_t lev, char *fmt, ...);
52
53 /**
54  * Logs the given message to stdout while prefixing the current time to it.
55  *
56  */
57 void errorlog(char *fmt, ...);
58
59 /**
60  * Logs the given message to stdout while prefixing the current time to it,
61  * but only if verbose mode is activated.
62  *
63  */
64 void verboselog(char *fmt, ...);
65
66 /**
67  * Logs the given message to stdout while prefixing the current time to it.
68  * This is to be called by LOG() which includes filename/linenumber
69  *
70  */
71 void slog(char *fmt, va_list args);
72
73 #endif