aboutsummaryrefslogtreecommitdiff
path: root/src/mod_muc_sql.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/mod_muc_sql.erl')
-rw-r--r--src/mod_muc_sql.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mod_muc_sql.erl b/src/mod_muc_sql.erl
index 54e0315df..256c25e29 100644
--- a/src/mod_muc_sql.erl
+++ b/src/mod_muc_sql.erl
@@ -431,7 +431,7 @@ clean_tables(ServerHost) ->
{updated, _} ->
ok;
Err1 ->
- ?ERROR_MSG("failed to clean 'muc_online_room' table: ~p", [Err1]),
+ ?ERROR_MSG("Failed to clean 'muc_online_room' table: ~p", [Err1]),
Err1
end,
?DEBUG("Cleaning SQL muc_online_users table...", []),
@@ -441,6 +441,6 @@ clean_tables(ServerHost) ->
{updated, _} ->
ok;
Err2 ->
- ?ERROR_MSG("failed to clean 'muc_online_users' table: ~p", [Err2]),
+ ?ERROR_MSG("Failed to clean 'muc_online_users' table: ~p", [Err2]),
Err2
end.