diff --git a/database/__init__.py b/database/__init__.py index 581e336c2..1a02a6475 100755 --- a/database/__init__.py +++ b/database/__init__.py @@ -398,16 +398,16 @@ def copy_databasefile(self): database_name = '' # copy the database file - self.logger.warning( f"Starting to copy SQLite3 database file from {database_name} to {self._copy_database_name}") + self.logger.info( f"Starting to copy SQLite3 database file from {database_name} to {self._copy_database_name}") import shutil try: shutil.copy2(database_name, self._copy_database_name) - self.logger.warning("Finished copying SQLite3 database file") + self.logger.info("Finished copying SQLite3 database file") except Exception as e: self.logger.error( f"Error copying SQLite3 database file: {e}") - param_dict = {"copy_database": False} - self.update_config_section(param_dict) + #param_dict = {"copy_database": False} + #self.update_config_section(param_dict) return