From ac6c5d5fc63da2aed40a37104a63dfb64b1d82b3 Mon Sep 17 00:00:00 2001 From: Shinyzenith Date: Mon, 17 Jan 2022 22:44:34 +0530 Subject: [PATCH] [refactor] Remove preceeding "Note:" from root warning. --- src/main.rs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index 730c331..f760f50 100644 --- a/src/main.rs +++ b/src/main.rs @@ -117,9 +117,10 @@ pub fn check_config_xdg() -> std::path::PathBuf { log::warn!( "Note: Due to the design of the application, the invoking user is always root." ); - log::warn!("Note: You can set a custom config file with the -c option."); - log::warn!("Note: Adding your user to the input group could solve this. However that's a massive security flaw and basically defeats the purpose of using wayland."); - log::warn!("Note: The following issue may be addressed in the future, but it is certainly not a priority right now."); + log::warn!("You can set a custom config file with the -c option."); + log::warn!("Adding your user to the input group could solve this."); + log::warn!("However that's a massive security flaw and basically defeats the purpose of using wayland."); + log::warn!("The following issue may be addressed in the future, but it is certainly not a priority right now."); } } return config_file_path;