aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBadlop <badlop@process-one.net>2009-07-16 20:18:19 +0000
committerBadlop <badlop@process-one.net>2009-07-16 20:18:19 +0000
commitd49fe6e60d64bdb057480bf8d6eecb0fae24c7bf (patch)
treee38cdb0ddd2e0838dbd0aa213deb554edab96797
parentUpdate Galician translation (thanks to Carlos E. Lopez) (diff)
If a command is already defined: log as Debug, not as Warning.
SVN Revision: 2362
-rw-r--r--src/ejabberd_commands.erl2
1 files changed, 1 insertions, 1 deletions
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).