Emit warning if no dokuwiki auth is found.

This commit is contained in:
Dominik Pantůček 2023-06-26 19:35:57 +02:00
parent 61975cce78
commit c4a99b6561

View file

@ -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)))