From 53316ac7b87e7d674e012a5c71f2b08d41c027f8 Mon Sep 17 00:00:00 2001 From: Ross Brattain Date: Wed, 21 Jun 2017 18:49:08 -0700 Subject: move logging to runtime init There are many ways to init logging, but doing import-time logic can cause problems. For yardstick we are doing this type of run-time init in the main program startup. This allows for some flexibiliy since we just set the root loggers. Every other logger is standard, not subclassed Change-Id: I7004a147f03a7104f373141caf9206d8e49a5d4c Signed-off-by: Ross Brattain --- anteater/utils/__init__.py | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 anteater/utils/__init__.py (limited to 'anteater/utils/__init__.py') diff --git a/anteater/utils/__init__.py b/anteater/utils/__init__.py deleted file mode 100644 index 1db8868..0000000 --- a/anteater/utils/__init__.py +++ /dev/null @@ -1,7 +0,0 @@ -from __future__ import absolute_import -import pkg_resources - -try: - __version__ = pkg_resources.get_distribution(__name__).version -except: - __version__ = 'unknown' -- cgit 1.2.3-korg