diff options
author | Drew DeVault <sir@cmpwn.com> | 2015-11-28 08:49:02 -0500 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2015-11-28 08:49:02 -0500 |
commit | e0cb8284fbb74baefacaedfda9ef420eaf0b3a61 (patch) | |
tree | fa4b967d1137ed4147fa7fd713142749c7792e36 /include/layout.h | |
parent | 9b62a98f3e104a6566891ecf491dd15327db443f (diff) |
Rearrange logging headers
Ref #270
Diffstat (limited to 'include/layout.h')
-rw-r--r-- | include/layout.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/layout.h b/include/layout.h index a3cf006a..62e4c202 100644 --- a/include/layout.h +++ b/include/layout.h @@ -2,6 +2,7 @@ #define _SWAY_LAYOUT_H #include <wlc/wlc.h> +#include "log.h" #include "list.h" #include "container.h" #include "focus.h" @@ -59,4 +60,7 @@ swayc_t *get_swayc_in_direction_under(swayc_t *container, enum movement_directio void recursive_resize(swayc_t *container, double amount, enum wlc_resize_edge edge); +void layout_log(const swayc_t *c, int depth); +void swayc_log(log_importance_t verbosity, swayc_t *cont, const char* format, ...) __attribute__((format(printf,3,4))); + #endif |