Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 743e6d2 commit 8883918Copy full SHA for 8883918
1 file changed
plugins/dbms/sqlite/connector.py
@@ -45,8 +45,8 @@ def connect(self):
45
cursor.close()
46
47
except (self.__sqlite.DatabaseError, self.__sqlite.OperationalError), msg:
48
- errMsg = "unable to connect using SQLite 3 library, trying with SQLite 2"
49
- logger.error(errMsg)
+ warnMsg = "unable to connect using SQLite 3 library, trying with SQLite 2"
+ logger.warning(warnMsg)
50
try:
51
52
import sqlite
0 commit comments