summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorDaniel <daniel.kuku@gmail.com>2021-07-27 21:01:41 +0000
committerDaniel <daniel.kuku@gmail.com>2021-07-27 21:01:41 +0000
commit5c5571c668ba9063b50a6af9b58e24adccaeed4a (patch)
treec46a1d0c23764e574fbd10dea9afa5711c582aaf /config
parent69ebfb29fba19708aca1652bca01fb81abb092e6 (diff)
use puts instead warn
Diffstat (limited to 'config')
-rw-r--r--config/dev.exs3
1 files changed, 2 insertions, 1 deletions
diff --git a/config/dev.exs b/config/dev.exs
index 45e7f27ec..ab3e83c12 100644
--- a/config/dev.exs
+++ b/config/dev.exs
@@ -61,7 +61,8 @@ config :phoenix, :plug_init_mode, :runtime
if File.exists?("./config/dev.secret.exs") do
import_config "dev.secret.exs"
else
- IO.warn(
+ IO.puts(
+ :stderr,
"!!! RUNNING IN LOCALHOST DEV MODE! !!!\nFEDERATION WON'T WORK UNTIL YOU CONFIGURE A dev.secret.exs"
)
end