Add a debug log for application

debug-application
Takashi Kokubun 6 months ago
parent b33c310bfb
commit 7c645e1881

@ -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) => {

Loading…
Cancel
Save