summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorDaniel <daniel.kuku@gmail.com>2021-07-27 20:41:36 +0000
committerDaniel <daniel.kuku@gmail.com>2021-07-27 20:41:36 +0000
commit69ebfb29fba19708aca1652bca01fb81abb092e6 (patch)
tree998447c53cbdf84fe0416d7a132e57f00c09bb28 /config
parentd8a986c9e893de8eed3aa336a557695669b1ffee (diff)
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
Diffstat (limited to 'config')
-rw-r--r--config/dev.exs2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/dev.exs b/config/dev.exs
index 6b7ffb0e9..45e7f27ec 100644
--- a/config/dev.exs
+++ b/config/dev.exs
@@ -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