From 920f2678ac25188563bd213dd9cccae5d67c61cc Mon Sep 17 00:00:00 2001 From: Evgeniy Khramtsov Date: Sun, 16 Apr 2017 01:02:46 +0300 Subject: [PATCH] Report configuration file location on startup --- src/ejabberd_config.erl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ejabberd_config.erl b/src/ejabberd_config.erl index 1f357c294..c903f68e0 100644 --- a/src/ejabberd_config.erl +++ b/src/ejabberd_config.erl @@ -78,7 +78,8 @@ start() -> end, State2 = set_option({node_start, global}, UnixTime, State1), State3 = set_option({shared_key, global}, SharedKey, State2), - set_opts(State3). + set_opts(State3), + ?INFO_MSG("Loaded configuration from ~s", [ConfigFile]). %% When starting ejabberd for testing, we sometimes want to start a %% subset of hosts from the one define in the config file.