From c4a99b6561a913c6d70b748be5b78772ac590083 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Pant=C5=AF=C4=8Dek?= Date: Mon, 26 Jun 2023 19:35:57 +0200 Subject: [PATCH] Emit warning if no dokuwiki auth is found. --- src/dokuwiki.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/dokuwiki.scm b/src/dokuwiki.scm index b28eef1..3c86786 100644 --- a/src/dokuwiki.scm +++ b/src/dokuwiki.scm @@ -71,7 +71,9 @@ (define (load-dokuwiki-users-auth fname) (handle-exceptions exn - '() + (let () + (log-warning "DokuWiki: cannot open ~A" fname) + '()) (with-input-from-file fname parse-dokuwiki-users-auth)))