]> granicus.if.org Git - ejabberd/commitdiff
moved some log reports from error to debug level (thanks to Evgeniy Khramtsov)
authorBadlop <badlop@process-one.net>
Mon, 20 Jul 2009 09:21:30 +0000 (09:21 +0000)
committerBadlop <badlop@process-one.net>
Mon, 20 Jul 2009 09:21:30 +0000 (09:21 +0000)
SVN Revision: 2373

src/web/ejabberd_http_bind.erl

index 61d15943b4423c2dcad719a80daffcf30b30a794..68bb8e383f8e946b0dc7bceaa16c78caf4646c15 100644 (file)
@@ -360,7 +360,7 @@ handle_sync_event({stop,stream_closed}, _From, _StateName, StateData) ->
     Reply = ok,
     {stop, normal, Reply, StateData};
 handle_sync_event({stop,Reason}, _From, _StateName, StateData) ->
-    ?ERROR_MSG("Closing bind session ~p - Reason: ~p", [StateData#state.id, Reason]),
+    ?DEBUG("Closing bind session ~p - Reason: ~p", [StateData#state.id, Reason]),
     Reply = ok,
     {stop, normal, Reply, StateData};
 
@@ -734,10 +734,10 @@ process_buffered_request(Reply, StateName, StateData) ->
 handle_http_put(Sid, Rid, Attrs, Payload, StreamStart, IP) ->
     case http_put(Sid, Rid, Attrs, Payload, StreamStart, IP) of
         {error, not_exists} ->
-            ?ERROR_MSG("no session associated with sid: ~p", [Sid]),
+            ?DEBUG("no session associated with sid: ~p", [Sid]),
             {404, ?HEADER, ""};
         {{error, Reason}, Sess} ->
-            ?ERROR_MSG("Error on HTTP put. Reason: ~p", [Reason]),
+            ?DEBUG("Error on HTTP put. Reason: ~p", [Reason]),
             handle_http_put_error(Reason, Sess);
         {{repeat, OutPacket}, Sess} ->
             ?DEBUG("http_put said 'repeat!' ...~nOutPacket: ~p", [OutPacket]),