Python agent lib soname major bump
[lttng-ust.git] / python-lttngust / lttngust / loghandler.py
index 406cc58b565025ea23d5959477ab8959153a1dca..745d96371efe344ca28d3c67b71e4cf94b214dca 100644 (file)
@@ -9,9 +9,10 @@ from __future__ import unicode_literals
 import logging
 import ctypes
 
+from .version import __soname_major__
 
 class _Handler(logging.Handler):
-    _LIB_NAME = 'liblttng-ust-python-agent.so.0'
+    _LIB_NAME = 'liblttng-ust-python-agent.so.' + __soname_major__
 
     def __init__(self):
         super(self.__class__, self).__init__(level=logging.NOTSET)
This page took 0.024468 seconds and 4 git commands to generate.