diff options
author | Daniel <daniel.kuku@gmail.com> | 2021-07-27 20:41:36 +0000 |
---|---|---|
committer | Daniel <daniel.kuku@gmail.com> | 2021-07-27 20:41:36 +0000 |
commit | 69ebfb29fba19708aca1652bca01fb81abb092e6 (patch) | |
tree | 998447c53cbdf84fe0416d7a132e57f00c09bb28 | |
parent | d8a986c9e893de8eed3aa336a557695669b1ffee (diff) | |
download | pleroma-69ebfb29fba19708aca1652bca01fb81abb092e6.tar.gz |
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
-rw-r--r-- | config/dev.exs | 2 |
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 |