X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2Fcommon.git;a=blobdiff_plain;f=osm_common%2F__init__.py;fp=osm_common%2F__init__.py;h=c4c32da2f106181c1ef2a971255556927419c952;hp=8bc5507d7b2158a39621ac4e07878a1f65bce572;hb=d3b582a7268d90c072bb7fbe10a25c80851f3c1e;hpb=15ec83a20391bf91618952247023716218292d72 diff --git a/osm_common/__init__.py b/osm_common/__init__.py index 8bc5507..c4c32da 100644 --- a/osm_common/__init__.py +++ b/osm_common/__init__.py @@ -14,6 +14,7 @@ # implied. # See the License for the specific language governing permissions and # limitations under the License. +import logging version = "7.0.0.post4" date_version = "2019-01-21" @@ -23,5 +24,6 @@ try: from pkg_resources import get_distribution version = get_distribution("osm_common").version -except Exception: - pass + +except Exception as init_error: + logging.exception(f"{init_error} occured while getting the common version")