logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git
commit: 5c5571c668ba9063b50a6af9b58e24adccaeed4a
parent 69ebfb29fba19708aca1652bca01fb81abb092e6
Author: Daniel <daniel.kuku@gmail.com>
Date:   Tue, 27 Jul 2021 21:01:41 +0000

use puts instead warn

Diffstat:

Mconfig/dev.exs3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 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