]> git.sur5r.net Git - i3/i3/commitdiff
Use __FUNCTION__ in LOG()
authorMichael Stapelberg <michael+x200@stapelberg.de>
Fri, 6 Mar 2009 15:48:30 +0000 (16:48 +0100)
committerMichael Stapelberg <michael+x200@stapelberg.de>
Fri, 6 Mar 2009 15:48:30 +0000 (16:48 +0100)
include/util.h

index 85f6d98867e9ade23c70daa243a65cc6cfa6508d..4e4e3d057b72708087c53d9eb7cb9b95ba0f2db5 100644 (file)
@@ -22,7 +22,7 @@
                                                 CIRCLEQ_PREV(elm, field) : NULL)
 /* ##__VA_ARGS__ means: leave out __VA_ARGS__ completely if it is empty, that is,
    delete the preceding comma */
-#define LOG(fmt, ...) slog("%s:%d - " fmt, __FILE__, __LINE__, ##__VA_ARGS__)
+#define LOG(fmt, ...) slog("%s:%s:%d - " fmt, __FILE__, __FUNCTION__, __LINE__, ##__VA_ARGS__)
 
 
 int min(int a, int b);