From 19ea5662c661d5a7ab3eeeafa1f7a7846ea4f762 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sat, 18 Dec 2021 16:32:50 +0100 Subject: Add some log output Signed-off-by: Matthias Beyer --- gui/src/app.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gui/src/app.rs b/gui/src/app.rs index 73808c8..bc5fa17 100644 --- a/gui/src/app.rs +++ b/gui/src/app.rs @@ -107,7 +107,9 @@ impl Application for Distrox { if !state.input_value.is_empty() { let input = state.input_value.clone(); let client = state.profile.client().clone(); + log::trace!("Posting..."); iced::Command::perform(async move { + log::trace!("Posting: '{}'", input); client.post_text_blob(input).await }, |res| match res { -- cgit v1.2.3