diff --git a/djaosdb/caosdb_client.py b/djaosdb/caosdb_client.py index 8b1a9ebf90821b8903bf76dcaa63caf66164a472..38c5d2d1f7b1e83730f71fbbd9243b68e5cd9ba4 100644 --- a/djaosdb/caosdb_client.py +++ b/djaosdb/caosdb_client.py @@ -227,7 +227,7 @@ class DefaultCaosDBClientDelegate: c.insert() def insert_auth(self, record_type : str, records: list): - print(records) + pass def insert_many(self, record_type : str, records : list): c = self._caosdb.Container() @@ -337,7 +337,6 @@ class DefaultCaosDBClientDelegate: class CaosDBClient: def __init__(self, enforce_schema=True, delegate=DefaultCaosDBClientDelegate, **kwargs): - LOGGER.info("New CaosDBClient: %s", kwargs) self.enforce_schema = enforce_schema self._delegate = delegate(**kwargs)