Skip to content
Snippets Groups Projects
Verified Commit 7ef741d8 authored by Timm Fitschen's avatar Timm Fitschen
Browse files

reduce logging output

parent c65eee53
Branches
No related tags found
No related merge requests found
...@@ -227,7 +227,7 @@ class DefaultCaosDBClientDelegate: ...@@ -227,7 +227,7 @@ class DefaultCaosDBClientDelegate:
c.insert() c.insert()
def insert_auth(self, record_type : str, records: list): def insert_auth(self, record_type : str, records: list):
print(records) pass
def insert_many(self, record_type : str, records : list): def insert_many(self, record_type : str, records : list):
c = self._caosdb.Container() c = self._caosdb.Container()
...@@ -337,7 +337,6 @@ class DefaultCaosDBClientDelegate: ...@@ -337,7 +337,6 @@ class DefaultCaosDBClientDelegate:
class CaosDBClient: class CaosDBClient:
def __init__(self, enforce_schema=True, def __init__(self, enforce_schema=True,
delegate=DefaultCaosDBClientDelegate, **kwargs): delegate=DefaultCaosDBClientDelegate, **kwargs):
LOGGER.info("New CaosDBClient: %s", kwargs)
self.enforce_schema = enforce_schema self.enforce_schema = enforce_schema
self._delegate = delegate(**kwargs) self._delegate = delegate(**kwargs)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment