Skip to content
Snippets Groups Projects
Unverified Commit 381c068a authored by Ryan Senior's avatar Ryan Senior Committed by GitHub
Browse files

Merge pull request #8651 from metabase/fix-startup-localized-string-error

Fix SystemLocalizedString error while running FE tests
parents 792caa65 958b7b8b
No related branches found
No related tags found
No related merge requests found
......@@ -43,7 +43,7 @@
:when (and (.isFile file)
(.canRead file)
(re-find #"\.jar$" (.getPath file)))]
(log/info (u/format-color 'magenta (trs "Loading plugin {0}... " file) (u/emoji "🔌")))
(log/info (u/format-color 'magenta (trs "Loading plugin {0}... {1}" file (u/emoji "🔌"))))
(add-jar-to-classpath! file))))
......
......@@ -235,7 +235,7 @@
{:style/indent 2}
(^String [color x]
{:pre [((some-fn symbol? keyword?) color)]}
(colorize color x))
(colorize color (str x)))
(^String [color format-string & args]
(colorize color (apply format format-string args))))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment