remove unused log

This commit is contained in:
Yannick Stephan
2025-02-20 12:54:14 +01:00
parent fbe7e9994d
commit 9f2c659d9c
2 changed files with 2 additions and 2 deletions

View File

@@ -44,7 +44,7 @@ class OracleDB:
self.increment = 1 self.increment = 1
logger.info(f"Using the label {self.workspace} for Oracle Graph as identifier") logger.info(f"Using the label {self.workspace} for Oracle Graph as identifier")
if self.user is None or self.password is None: if self.user is None or self.password is None:
raise ValueError("Missing database user or password in addon_params") raise ValueError("Missing database user or password")
try: try:
oracledb.defaults.fetch_lobs = False oracledb.defaults.fetch_lobs = False

View File

@@ -55,7 +55,7 @@ class PostgreSQLDB:
if self.user is None or self.password is None or self.database is None: if self.user is None or self.password is None or self.database is None:
raise ValueError( raise ValueError(
"Missing database user, password, or database in addon_params" "Missing database user, password, or database"
) )
async def initdb(self): async def initdb(self):