diff --git a/xwayland/window-manager.c b/xwayland/window-manager.c
index 4a799e35131f97e60d9583751bb2003ef906a291..56d65af8308cd6329e17f4533ce76b633e2aab74 100644
--- a/xwayland/window-manager.c
+++ b/xwayland/window-manager.c
@@ -966,8 +966,9 @@ weston_wm_handle_map_request(struct weston_wm *wm, xcb_generic_event_t *event)
 	if (window->frame_id == XCB_WINDOW_NONE)
 		weston_wm_window_create_frame(window);
 
-	wm_log("XCB_MAP_REQUEST (window %d, %p, frame %d)\n",
-	       window->id, window, window->frame_id);
+	wm_log("XCB_MAP_REQUEST (window %d, %p, frame %d, %dx%d @ %d,%d)\n",
+	       window->id, window, window->frame_id,
+	       window->width, window->height, window->x, window->y);
 
 	weston_wm_window_set_wm_state(window, ICCCM_NORMAL_STATE);
 	weston_wm_window_set_net_wm_state(window);