From 1d025bcd5ac9a3665bea71ed9911ca9f8ddf97d8 Mon Sep 17 00:00:00 2001 From: Dimitri Fontaine Date: Mon, 23 Jan 2017 21:52:38 +0100 Subject: [PATCH] Fix log levels. It looks like we missed the INFO level messages in the DEBUG output. --- src/utils/logs.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/logs.lisp b/src/utils/logs.lisp index 83fda9b..489f20c 100644 --- a/src/utils/logs.lisp +++ b/src/utils/logs.lisp @@ -11,7 +11,7 @@ (defcategory :notice (or :notice :warning)) (defcategory :sql (or :sql :notice)) (defcategory :info (or :info :sql)) -(defcategory :debug (or :debug :sql)) +(defcategory :debug (or :debug :info)) (defcategory :data (or :data :debug)) (defvar *log-messengers* nil