aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/python/helloworld/greeter_client_with_options.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/python/helloworld/greeter_client_with_options.py')
-rw-r--r--examples/python/helloworld/greeter_client_with_options.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/python/helloworld/greeter_client_with_options.py b/examples/python/helloworld/greeter_client_with_options.py
index 7eda8c9066..d15871b519 100644
--- a/examples/python/helloworld/greeter_client_with_options.py
+++ b/examples/python/helloworld/greeter_client_with_options.py
@@ -14,6 +14,7 @@
"""The Python implementation of the GRPC helloworld.Greeter client with channel options and call timeout parameters."""
from __future__ import print_function
+import logging
import grpc
@@ -41,4 +42,5 @@ def run():
if __name__ == '__main__':
+ logging.basicConfig()
run()