diff options
Diffstat (limited to 'src/mod_proxy65_redis.erl')
-rw-r--r-- | src/mod_proxy65_redis.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mod_proxy65_redis.erl b/src/mod_proxy65_redis.erl index a3f7bb5a7..4395d9069 100644 --- a/src/mod_proxy65_redis.erl +++ b/src/mod_proxy65_redis.erl @@ -95,7 +95,7 @@ register_stream(SID, Pid) -> end), ok; _:badarg -> - ?ERROR_MSG("malformed data in redis (key = '~s'): ~p", + ?ERROR_MSG("Malformed data in redis (key = '~s'): ~p", [SIDKey, Val]), {error, db_failure} end @@ -128,7 +128,7 @@ unregister_stream(SID) -> catch _:badarg when Val == undefined -> ok; _:badarg -> - ?ERROR_MSG("malformed data in redis (key = '~s'): ~p", + ?ERROR_MSG("Malformed data in redis (key = '~s'): ~p", [SIDKey, Val]), {error, db_failure} end @@ -163,7 +163,7 @@ activate_stream(SID, IJID, MaxConnections, _Node) -> catch _:badarg when Val == undefined -> {error, notfound}; _:badarg -> - ?ERROR_MSG("malformed data in redis (key = '~s'): ~p", + ?ERROR_MSG("Malformed data in redis (key = '~s'): ~p", [SIDKey, Val]), {error, db_failure} end |