aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/python/interceptors/headers/greeter_client.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/python/interceptors/headers/greeter_client.py')
-rw-r--r--examples/python/interceptors/headers/greeter_client.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/python/interceptors/headers/greeter_client.py b/examples/python/interceptors/headers/greeter_client.py
index 6a09a3b9c5..712539850d 100644
--- a/examples/python/interceptors/headers/greeter_client.py
+++ b/examples/python/interceptors/headers/greeter_client.py
@@ -14,6 +14,7 @@
"""The Python implementation of the GRPC helloworld.Greeter client."""
from __future__ import print_function
+import logging
import grpc
@@ -37,4 +38,5 @@ def run():
if __name__ == '__main__':
+ logging.basicConfig()
run()