How namespacing works for log entries
masterBy default, clojure.tools.logging uses the current namespace (the value of *ns*) as the "logger name". This allows you to configure different logging levels or formats for specific namespaces within your underlying logging implementation.
Important: Ensure your underlying logging implementation is configured to display the logger name. If the implementation uses stack-inspection instead of the provided name, log output may be unhelpful.