aboutsummaryrefslogtreecommitdiffstats
path: root/core/storagemanager.lua
diff options
context:
space:
mode:
Diffstat (limited to 'core/storagemanager.lua')
-rw-r--r--core/storagemanager.lua6
1 files changed, 4 insertions, 2 deletions
diff --git a/core/storagemanager.lua b/core/storagemanager.lua
index 319046b9..75cb8d0f 100644
--- a/core/storagemanager.lua
+++ b/core/storagemanager.lua
@@ -72,7 +72,8 @@ local function get_storage_config(host)
end
end
if found_sql2 then
- log("error", "The temporary 'sql2' storage module has now been renamed to 'sql', please update your config file: https://prosody.im/doc/modules/mod_storage_sql2");
+ log("error", "The temporary 'sql2' storage module has now been renamed to 'sql', "
+ .."please update your config file: https://prosody.im/doc/modules/mod_storage_sql2");
end
return storage_config;
end
@@ -180,7 +181,8 @@ local function purge(user, host)
if driver.purge then
purged[driver_name] = driver:purge(user);
else
- log("warn", "Storage driver %s does not support removing all user data, you may need to delete it manually", driver_name);
+ log("warn", "Storage driver %s does not support removing all user data, "
+ .."you may need to delete it manually", driver_name);
end
end
end