diff options
author | Matthew Wild <mwild1@gmail.com> | 2015-07-08 15:16:17 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2015-07-08 15:16:17 +0100 |
commit | c23293f38250ac5f85a813452a6d4973ea94b5fe (patch) | |
tree | 09cee77a25fd54b80ff187e02fd9e69dcbc6d241 | |
parent | 5a90847cd7b5df458a34000b187dcd11522940ea (diff) | |
download | prosody-c23293f38250ac5f85a813452a6d4973ea94b5fe.tar.gz prosody-c23293f38250ac5f85a813452a6d4973ea94b5fe.zip |
util.sql: Fix log level of debug message
-rw-r--r-- | util/sql.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/sql.lua b/util/sql.lua index 037dbc76..693b67d9 100644 --- a/util/sql.lua +++ b/util/sql.lua @@ -101,7 +101,7 @@ function engine:connect() local params = self.params; assert(params.driver, "no driver") - log("error", "Connecting to [%s] %s...", params.driver, params.database); + log("debug", "Connecting to [%s] %s...", params.driver, params.database); local dbh, err = DBI.Connect( params.driver, params.database, params.username, params.password, |