From d49fe6e60d64bdb057480bf8d6eecb0fae24c7bf Mon Sep 17 00:00:00 2001 From: Badlop Date: Thu, 16 Jul 2009 20:18:19 +0000 Subject: [PATCH] If a command is already defined: log as Debug, not as Warning. SVN Revision: 2362 --- src/ejabberd_commands.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ejabberd_commands.erl b/src/ejabberd_commands.erl index 3a94712fe..adfd12552 100644 --- a/src/ejabberd_commands.erl +++ b/src/ejabberd_commands.erl @@ -238,7 +238,7 @@ register_commands(Commands) -> true -> ok; false -> - ?WARNING_MSG("This command is already defined:~n~p", [Command]) + ?DEBUG("This command is already defined:~n~p", [Command]) end end, Commands).