mod_storage_sql: Lower message about new engine creation to debug level
authorKim Alvefur <zash@zash.se>
Sun, 21 Feb 2016 18:01:26 +0000 (19:01 +0100)
committerKim Alvefur <zash@zash.se>
Sun, 21 Feb 2016 18:01:26 +0000 (19:01 +0100)
plugins/mod_storage_sql.lua

index 50d34a23c15cea615489c4140e9fea8f9a0acd58..a11523d0d2b055a6a3dafa313b07d914876566c4 100644 (file)
@@ -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)