Closed elibosley closed 7 years ago
@dehli This should be good to go, and patches a couple of minor issues
@dehli This should be good to go!
Actually, one last suggestion would be to create a function that figures out the config file and use that in build.boot
(since that logic is currently duplicated).
@dehli It's currently duplicated because one of the functions has those extra log items - would you still de-duplicate them?
Yep. You can still accomplish logging by doing something like:
(let [config-file (get-config-file)]
(if config-file
(log/info (str "Using private config-file " config-file)
(log/info "Not using a private config-file"))
config-file)
PR for issue #400.
Ready for a PR?