From 7c645e188132ba8492e40f84bde29ae0d8b794c3 Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Tue, 5 Dec 2023 21:25:40 -0800 Subject: [PATCH] Add a debug log for application --- src/config/application.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/config/application.rs b/src/config/application.rs index aa3bf9b..049bf55 100644 --- a/src/config/application.rs +++ b/src/config/application.rs @@ -26,6 +26,7 @@ pub enum ApplicationMatcher { impl ApplicationMatcher { pub fn matches(&self, app: &str) -> bool { + println!("matches self: '{:?}', app: '{:?}'", self, app); match &self { ApplicationMatcher::Literal(s) => s == app, ApplicationMatcher::Name(s) => {