Skip to content
Snippets Groups Projects
Commit 958b7b8b authored by Ryan Senior's avatar Ryan Senior
Browse files

Fix SystemLocalizedString error while running FE tests

parent 792caa65
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