From ba320d849b1ab528543d88980b6b358d4df0d593 Mon Sep 17 00:00:00 2001 From: cage Date: Mon, 28 Nov 2022 20:32:20 +0100 Subject: [PATCH] - removed debug code. --- src/db.lisp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/db.lisp b/src/db.lisp index ea91c82..0518618 100644 --- a/src/db.lisp +++ b/src/db.lisp @@ -756,7 +756,6 @@ "Returns non nil if this boost must be ignored" (when-let ((ignore-regexps (swconf:ignore-users-boost-regexps)) (username (db:user-id->username account-id))) - (misc:dbg "ignore ~a" ignore-regexps) (loop for ignore-re in ignore-regexps do (when (cl-ppcre:scan ignore-re username) (return-from boost-ignored-p t)))