add startup warning when running in dev config mode

This commit is contained in:
Gered 2022-01-30 13:01:38 -05:00
parent e270541575
commit 47bbb06898

View file

@ -209,4 +209,6 @@
[& args] [& args]
(log/info "<%name%> is starting up ...") (log/info "<%name%> is starting up ...")
(mount/start-with-args args) (mount/start-with-args args)
(when (:dev? config)
(log/warn "*** Running in development mode! ***"))
(log/info "Ready!")) (log/info "Ready!"))