From d9f2ac58fc5023de9dfa79f889f069fae12cc059 Mon Sep 17 00:00:00 2001 From: glenneth Date: Thu, 6 Nov 2025 06:18:51 +0300 Subject: [PATCH] fix: Replace l:info with format t for logging - l:info was called with wrong number of arguments - Use format t for consistency with rest of codebase --- database.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database.lisp b/database.lisp index f90af59..8c141e0 100644 --- a/database.lisp +++ b/database.lisp @@ -45,5 +45,5 @@ ;; (unless (db:collection-exists-p "sessions") ;; (db:create "sessions" '(()))) - (l:info "~2&Database collections initialized~%")) + (format t "~2&Database collections initialized~%"))