mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_storage_sql: Remove the word 'error' from debug messages
The word 'error' anywhere, especially in harmless debug messages, are too often interpreted as fatal errors my some users, so best avoid that word. These look too scary as it is, being tracebacks.
This commit is contained in:
parent
26eeda9ed6
commit
ede98f71e4
1 changed files with 2 additions and 2 deletions
|
@ -14,11 +14,11 @@ local t_concat = table.concat;
|
|||
local have_dbisql, dbisql = pcall(require, "prosody.util.sql");
|
||||
local have_sqlite, sqlite = pcall(require, "prosody.util.sqlite3");
|
||||
if not have_dbisql then
|
||||
module:log("debug", "Could not load LuaDBI, error was: %s", dbisql)
|
||||
module:log("debug", "Could not load LuaDBI: %s", dbisql)
|
||||
dbisql = nil;
|
||||
end
|
||||
if not have_sqlite then
|
||||
module:log("debug", "Could not load LuaSQLite3, error was: %s", sqlite)
|
||||
module:log("debug", "Could not load LuaSQLite3: %s", sqlite)
|
||||
sqlite = nil;
|
||||
end
|
||||
if not (have_dbisql or have_sqlite) then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue