Skip to content

Commit 98847f5

Browse files
llyyrkasper93
authored andcommitted
wayland: log connector name for wl_output in more places
Fixes: b8ab107
1 parent e2bd1c6 commit 98847f5

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

video/out/wayland_common.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1702,8 +1702,8 @@ static void surface_handle_enter(void *data, struct wl_surface *wl_surface,
17021702
if (outputs == 1)
17031703
update_output_geometry(wl, old_geometry, old_output_geometry);
17041704

1705-
MP_VERBOSE(wl, "Surface entered output %s %s (0x%x), scale = %f, refresh rate = %f Hz\n",
1706-
wl->current_output->make, wl->current_output->model,
1705+
MP_VERBOSE(wl, "Surface entered output %s %s (%s) (0x%x), scale = %f, refresh rate = %f Hz\n",
1706+
wl->current_output->make, wl->current_output->model, wl->current_output->name,
17071707
wl->current_output->id, wl->scaling_factor, wl->current_output->refresh_rate);
17081708

17091709
wl->pending_vo_events |= VO_EVENT_WIN_STATE;
@@ -3332,8 +3332,8 @@ static void remove_output(struct vo_wayland_output *out)
33323332
if (!out)
33333333
return;
33343334

3335-
MP_VERBOSE(out->wl, "Deregistering output %s %s (0x%x)\n", out->make,
3336-
out->model, out->id);
3335+
MP_VERBOSE(out->wl, "Deregistering output %s %s (%s) (0x%x)\n", out->make,
3336+
out->model, out->name, out->id);
33373337
wl_list_remove(&out->link);
33383338
wl_output_destroy(out->output);
33393339
talloc_free(out->make);

0 commit comments

Comments
 (0)