diff options
author | Evgeniy Khramtsov <ekhramtsov@process-one.net> | 2014-08-12 14:22:32 +0400 |
---|---|---|
committer | Evgeniy Khramtsov <ekhramtsov@process-one.net> | 2014-08-12 14:26:15 +0400 |
commit | 5c88f6423aae5bdf4b19f059b1f580e0ef586a40 (patch) | |
tree | bc23d62d87a55d04dbc5449e87933aedb5ab7c22 /src | |
parent | Do not call functions from ejabberd_riak directly (diff) |
Fix the deprecation warning to reflect YAML format
Diffstat (limited to 'src')
-rw-r--r-- | src/ejabberd_config.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ejabberd_config.erl b/src/ejabberd_config.erl index 612cd84ce..dd1db765d 100644 --- a/src/ejabberd_config.erl +++ b/src/ejabberd_config.erl @@ -989,7 +989,7 @@ report_and_stop(Tab, Err) -> halt(string:substr(ErrTxt, 1, 199)). emit_deprecation_warning(Module, NewModule, DBType) -> - ?WARNING_MSG("Module ~s is deprecated, use {~s, [{db_type, ~s}, ...]}" + ?WARNING_MSG("Module ~s is deprecated, use ~s with 'db_type: ~s'" " instead", [Module, NewModule, DBType]). emit_deprecation_warning(Module, NewModule) -> |