From 220e660c840e4ecc636ec05d3f4ac1f2b8619f3e Mon Sep 17 00:00:00 2001 From: not manx Date: Sat, 23 May 2020 16:53:51 +0000 Subject: [PATCH] Stop generating access logs --- src/main.lisp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main.lisp b/src/main.lisp index 14cd5f9..5ccc794 100644 --- a/src/main.lisp +++ b/src/main.lisp @@ -6,7 +6,9 @@ (set-flags) (defvar +serb+ (make-instance 'hunchentoot:easy-acceptor :port 4242 - :document-root (cconf 'www-root))) + :document-root (cconf 'www-root) + :access-log-destination nil + :message-log-destination #p"/var/log/bantflags/erorr.log")) (hunchentoot:start +serb+)) (defun main ()