diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-01-06 09:31:34 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-06 09:31:34 -0500 |
commit | 5a23959242419169fa4af032d85ee3f65e7041e4 (patch) | |
tree | 79386d3d2aa90718f8c071a3337c695cb8a71f78 /swaymsg | |
parent | fdc92e745498a4e0707a51c3fd3390d462e9ae59 (diff) | |
parent | d4ddfec32e15fd1f47568f1b82eacc27cda5266a (diff) |
Merge pull request #1556 from martinetd/cleanup_logging
Cleanup logging
Diffstat (limited to 'swaymsg')
-rw-r--r-- | swaymsg/main.c | 2 | ||||
-rw-r--r-- | swaymsg/meson.build | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/swaymsg/main.c b/swaymsg/main.c index a34eced4..88b14813 100644 --- a/swaymsg/main.c +++ b/swaymsg/main.c @@ -232,7 +232,7 @@ int main(int argc, char **argv) { char *socket_path = NULL; char *cmdtype = NULL; - init_log(L_INFO); + wlr_log_init(L_INFO, NULL); static struct option long_options[] = { {"help", no_argument, NULL, 'h'}, diff --git a/swaymsg/meson.build b/swaymsg/meson.build index 2d678878..8638b838 100644 --- a/swaymsg/meson.build +++ b/swaymsg/meson.build @@ -2,7 +2,7 @@ executable( 'swaymsg', 'main.c', include_directories: [sway_inc], - dependencies: [jsonc], + dependencies: [jsonc, wlroots], link_with: [lib_sway_common], install: true ) |