WindowRuleEnforcer: remove debug logs

This commit is contained in:
Peter Fajdiga
2024-04-01 19:26:50 +02:00
parent c7cfa261b9
commit 0523465b84

View File

@@ -5,9 +5,6 @@ class WindowRuleEnforcer {
constructor(windowRules: WindowRule[]) {
const [floatRegex, tileRegex, followCaptionRegex] = WindowRuleEnforcer.createWindowRuleRegexes(windowRules);
log("floatRegex", floatRegex);
log("tileRegex", tileRegex);
log("followCaptionRegex", followCaptionRegex);
this.preferFloating = new ClientMatcher(floatRegex);
this.preferTiling = new ClientMatcher(tileRegex);
this.followCaption = followCaptionRegex;