Update dev.exs error message to write to stderr. Currently it dumps this message at the beginnig of the file when using vim-autoformat with mix format

This commit is contained in:
Daniel 2021-07-27 20:41:36 +00:00
parent d8a986c9e8
commit 69ebfb29fb
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ config :phoenix, :plug_init_mode, :runtime
if File.exists?("./config/dev.secret.exs") do
import_config "dev.secret.exs"
else
IO.puts(
IO.warn(
"!!! RUNNING IN LOCALHOST DEV MODE! !!!\nFEDERATION WON'T WORK UNTIL YOU CONFIGURE A dev.secret.exs"
)
end