diff --git a/gfx/drivers_context/wayland_ctx.c b/gfx/drivers_context/wayland_ctx.c index fbd20d128a..80ee8c8324 100644 --- a/gfx/drivers_context/wayland_ctx.c +++ b/gfx/drivers_context/wayland_ctx.c @@ -867,7 +867,7 @@ static void *gfx_ctx_wl_init(video_frame_info_t *video_info, void *video_driver) if (!wl->dpy) { - RARCH_ERR("Failed to connect to Wayland server.\n"); + RARCH_ERR("[Wayland]: Failed to connect to Wayland server.\n"); goto error; } @@ -879,19 +879,19 @@ static void *gfx_ctx_wl_init(video_frame_info_t *video_info, void *video_driver) if (!wl->compositor) { - RARCH_ERR("Failed to create compositor.\n"); + RARCH_ERR("[Wayland]: Failed to create compositor.\n"); goto error; } if (!wl->shm) { - RARCH_ERR("Failed to create shm.\n"); + RARCH_ERR("[Wayland]: Failed to create shm.\n"); goto error; } if (!wl->shell) { - RARCH_ERR("Failed to create shell.\n"); + RARCH_ERR("[Wayland]: Failed to create shell.\n"); goto error; } diff --git a/gfx/font_driver.c b/gfx/font_driver.c index fd813604d0..9111df26a7 100644 --- a/gfx/font_driver.c +++ b/gfx/font_driver.c @@ -66,7 +66,7 @@ int font_renderer_create_default(const void **data, void **handle, *handle = font_backends[i]->init(path, font_size); if (*handle) { - RARCH_LOG("Using font rendering backend: %s.\n", + RARCH_LOG("[Font]: Using font rendering backend: %s.\n", font_backends[i]->ident); *drv = font_backends[i]; return 1; diff --git a/menu/menu_display.c b/menu/menu_display.c index 697bcffe07..80d24b879f 100644 --- a/menu/menu_display.c +++ b/menu/menu_display.c @@ -458,7 +458,7 @@ bool menu_display_init_first_driver(void) menu_display_ctx_drivers[i]->type)) continue; - RARCH_LOG("Found menu display driver: \"%s\".\n", + RARCH_LOG("[Menu]: Found menu display driver: \"%s\".\n", menu_display_ctx_drivers[i]->ident); menu_disp = menu_display_ctx_drivers[i]; return true;