remove unused log
This commit is contained in:
parent
fbe7e9994d
commit
9f2c659d9c
2 changed files with 2 additions and 2 deletions
|
|
@ -44,7 +44,7 @@ class OracleDB:
|
|||
self.increment = 1
|
||||
logger.info(f"Using the label {self.workspace} for Oracle Graph as identifier")
|
||||
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:
|
||||
oracledb.defaults.fetch_lobs = False
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ class PostgreSQLDB:
|
|||
|
||||
if self.user is None or self.password is None or self.database is None:
|
||||
raise ValueError(
|
||||
"Missing database user, password, or database in addon_params"
|
||||
"Missing database user, password, or database"
|
||||
)
|
||||
|
||||
async def initdb(self):
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue