diff --git a/src/main.rs b/src/main.rs index 7c65989..45ddfdc 100644 --- a/src/main.rs +++ b/src/main.rs @@ -124,7 +124,9 @@ fn run_frontend(config: &Config) -> Result<(), IpcError> { } #[cfg(not(feature = "gtk"))] Frontend::Gtk => panic!("gtk frontend requested but feature not enabled!"), - Frontend::None => {} + Frontend::None => { + log::warn!("no frontend available!"); + } }; Ok(()) }