Browse Source

Remove log message in destructor

ogert 4 years ago
parent
commit
eb1947e6bb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cdplib/db_handlers/SQLHandler.py

+ 1 - 1
cdplib/db_handlers/SQLHandler.py

@@ -46,6 +46,7 @@ class SQLHandler:
     closing of a database connection,
      this avoids errors when parallelizing with multiprocessing.
     '''
+    pass
     def __init__(self, db_uri: str = None,
                  is_case_insensitive: bool = False):
         '''
@@ -106,7 +107,6 @@ class SQLHandler:
 
     def __del__(self):
         self.dispose_engine()
-        self._log.info('SQL Handler has been destroyed')
 
     @property
     def _connection_params(self) -> dict: