From ea45c60ab17f0899b2786305fd4ba4e09934044a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gerg=C5=91=20S=C3=A1lyi?= Date: Mon, 30 Sep 2024 20:49:26 +0200 Subject: [PATCH] Add a logging message to initialization --- src/main.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index ed11853..4402d9f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -14,7 +14,7 @@ use std::{ }; use clap::Parser; -use log::error; +use log::{debug, error}; use mio::{ Events, Interest, Poll, Token, Waker, unix::SourceFd, @@ -100,6 +100,8 @@ fn main() event_queue.roundtrip(&mut state).unwrap(); + debug!("Initial wayland roundtrip done. Starting main event loop."); + // ******************************** // Main event loop // ********************************