diff options
Diffstat (limited to 'src/mod_proxy65_sql.erl')
-rw-r--r-- | src/mod_proxy65_sql.erl | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mod_proxy65_sql.erl b/src/mod_proxy65_sql.erl index 18f8db147..715289db6 100644 --- a/src/mod_proxy65_sql.erl +++ b/src/mod_proxy65_sql.erl @@ -69,7 +69,6 @@ register_stream(SID, Pid) -> {atomic, _} -> ok; {aborted, Reason} -> - ?ERROR_MSG("failed to register stream: ~p", [Reason]), {error, Reason} end. @@ -82,7 +81,6 @@ unregister_stream(SID) -> {atomic, _} -> ok; {aborted, Reason} -> - ?ERROR_MSG("failed to unregister stream: ~p", [Reason]), {error, Reason} end. @@ -133,7 +131,6 @@ activate_stream(SID, IJID, MaxConnections, _Node) -> {aborted, {limit, _, _} = Limit} -> {error, Limit}; {aborted, Reason} -> - ?ERROR_MSG("failed to activate bytestream: ~p", [Reason]), {error, Reason} end. |