aboutsummaryrefslogtreecommitdiff
path: root/rootston/wl_shell.c
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-07-09 16:12:20 -0700
committerGitHub <noreply@github.com>2018-07-09 16:12:20 -0700
commit2518de655c7278728736d22549656c639e4c92f0 (patch)
treeacd08ceb9709eb25541fa02fbc533a7c6a99dbad /rootston/wl_shell.c
parente78d72f42e10b43a76ef5ba6b8c4b3b470b25245 (diff)
parent7cbef152063e1fbb24e6204339ff4587a74be04b (diff)
Merge pull request #1126 from emersion/wlr-log-prefix
util: add wlr_ prefix to log symbols
Diffstat (limited to 'rootston/wl_shell.c')
-rw-r--r--rootston/wl_shell.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/rootston/wl_shell.c b/rootston/wl_shell.c
index 02160773..07ac9f58 100644
--- a/rootston/wl_shell.c
+++ b/rootston/wl_shell.c
@@ -196,11 +196,11 @@ void handle_wl_shell_surface(struct wl_listener *listener, void *data) {
struct wlr_wl_shell_surface *surface = data;
if (surface->state == WLR_WL_SHELL_SURFACE_STATE_POPUP) {
- wlr_log(L_DEBUG, "new wl shell popup");
+ wlr_log(WLR_DEBUG, "new wl shell popup");
return;
}
- wlr_log(L_DEBUG, "new wl shell surface: title=%s, class=%s",
+ wlr_log(WLR_DEBUG, "new wl shell surface: title=%s, class=%s",
surface->title, surface->class);
wlr_wl_shell_surface_ping(surface);