mirror of
https://github.com/bjc/prosody.git
synced 2025-04-07 07:07:38 +03:00
mod_storage_sql: Lower message about new engine creation to debug level
This commit is contained in:
parent
7c238f0426
commit
8dab3d4fad
1 changed files with 1 additions and 1 deletions
|
@ -453,7 +453,7 @@ function module.load()
|
|||
local params = normalize_params(module:get_option("sql", default_params));
|
||||
engine = engines[sql.db2uri(params)];
|
||||
if not engine then
|
||||
module:log("info", "Creating new engine");
|
||||
module:log("debug", "Creating new engine");
|
||||
engine = sql:create_engine(params, function (engine)
|
||||
if module:get_option("sql_manage_tables", true) then
|
||||
-- Automatically create table, ignore failure (table probably already exists)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue