Add a logging message to initialization

This commit is contained in:
Gergő Sályi 2024-09-30 20:49:26 +02:00
parent 1f253ac3f9
commit ea45c60ab1

View file

@ -14,7 +14,7 @@ use std::{
}; };
use clap::Parser; use clap::Parser;
use log::error; use log::{debug, error};
use mio::{ use mio::{
Events, Interest, Poll, Token, Waker, Events, Interest, Poll, Token, Waker,
unix::SourceFd, unix::SourceFd,
@ -100,6 +100,8 @@ fn main()
event_queue.roundtrip(&mut state).unwrap(); event_queue.roundtrip(&mut state).unwrap();
debug!("Initial wayland roundtrip done. Starting main event loop.");
// ******************************** // ********************************
// Main event loop // Main event loop
// ******************************** // ********************************