diff --git a/src/main/java/bubble/abp/BubbleBlockCondition.java b/src/main/java/bubble/abp/BubbleBlockCondition.java index 662da90..83793b1 100644 --- a/src/main/java/bubble/abp/BubbleBlockCondition.java +++ b/src/main/java/bubble/abp/BubbleBlockCondition.java @@ -45,6 +45,7 @@ public class BubbleBlockCondition { } public boolean matches(String fqdn, String path, String contentType, String referer) { + if (log.isDebugEnabled()) log.debug("matches(fqdn="+fqdn+", path="+path+", contentType="+contentType+", referer="+referer+") with field="+field+", operation="+operation); switch (field) { case host: return operation.matches(fqdn, value); case path: return operation.matches(path, value);