From 407125e8a7b0c8106f071993aa8f825a552571b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cam=20Sa=C3=BCl?= <cammsaul@gmail.com> Date: Tue, 29 Sep 2015 18:23:41 -0700 Subject: [PATCH] update function name --- src/metabase/core.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/metabase/core.clj b/src/metabase/core.clj index 1c34a0a0c36..0086c7b9723 100644 --- a/src/metabase/core.clj +++ b/src/metabase/core.clj @@ -95,7 +95,7 @@ (defn init "General application initialization function which should be run once at application startup." [] - (log/info (format "Starting Metabase version %s..." (config/mb-version))) + (log/info (format "Starting Metabase version %s..." ((config/mb-version-info) :long))) ;; First of all, lets register a shutdown hook that will tidy things up for us on app exit (.addShutdownHook (Runtime/getRuntime) (Thread. ^Runnable destroy)) (log/debug "Using Config:\n" (with-out-str (clojure.pprint/pprint config/config-all))) -- GitLab