Add a logging message to initialization
This commit is contained in:
parent
1f253ac3f9
commit
ea45c60ab1
1 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
// ********************************
|
||||
|
|
Loading…
Add table
Reference in a new issue