cmis: ignore noisy cmislib logger (#53601)

This commit is contained in:
Benjamin Dauvergne 2021-10-21 12:12:46 +02:00
parent 19d73d8c41
commit f507ce2481
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ class CmisConnector(BaseResource):
@contextmanager
def get_cmis_gateway(self):
with ignore_loggers('cmislib'):
with ignore_loggers('cmislib', 'cmislib.atompub.binding'):
yield CMISGateway(self.cmis_endpoint, self.username, self.password, self.logger)
def _validate_inputs(self, data):