From d944441d2a6d0c8619e61ba7ceff16d6b147a76b Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Wed, 11 Nov 2015 15:25:50 +0100 Subject: Custodia client logging custodia.client library now logs requests and responses. The auditfile argument of setup_logging() can be set to None to configure client logging without audit file. Signed-off-by: Christian Heimes Reviewed-by: Simo Sorce --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index dc5291f..caf7f31 100644 --- a/Makefile +++ b/Makefile @@ -12,8 +12,10 @@ lint: ./custodia clean: - rm -fr build dist *.egg-info - find ./ -name '*.pyc' -exec rm -f {} \; + rm -fr build dist *.egg-info .tox + rm -f server_socket + find ./ -name '*.py[co]' -exec rm -f {} \; + find ./ -name __pycache__ -exec rm -rf {} \; cscope: git ls-files | xargs pycscope -- cgit