From fa1979c2bbf34606bcb7aec95b44519bb4acd3e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Hru=C5=A1ka?= Date: Sun, 24 Feb 2019 23:59:59 +0100 Subject: [PATCH] add a log output on startup so it doesnt look like it's stuck when debug log is disabled and there's no players running --- src/main.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.rs b/src/main.rs index 1d761dd..552b987 100644 --- a/src/main.rs +++ b/src/main.rs @@ -143,6 +143,8 @@ fn main() -> Result<(), Error> { let mut artist_cache = HashMap::::new(); + info!("Waiting for players..."); + 'main_loop: loop { // XXX this picks the first player, which isn't always ideal - see mpris/src/find.rs