From 3d2a7edc945d770396a28914ff0323ef1896b1f0 Mon Sep 17 00:00:00 2001 From: Tim Burke Date: Fri, 22 Jun 2018 11:07:50 -0700 Subject: [PATCH] Have ProxyKmipClient use a non-root logger --- kmip/pie/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kmip/pie/client.py b/kmip/pie/client.py index 4295e43..bb648b1 100644 --- a/kmip/pie/client.py +++ b/kmip/pie/client.py @@ -93,7 +93,7 @@ class ProxyKmipClient(object): Optional, defaults to None. """ - self.logger = logging.getLogger() + self.logger = logging.getLogger(__name__) self.attribute_factory = attributes.AttributeFactory() self.object_factory = factory.ObjectFactory()