From cec6f135061f6356c01bd8516803965aa62cb334 Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Thu, 11 Apr 2019 20:24:47 -0700 Subject: [PATCH] Log VLC path for debugging --- openlp/core/app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/openlp/core/app.py b/openlp/core/app.py index cdd023136..43b03ec83 100644 --- a/openlp/core/app.py +++ b/openlp/core/app.py @@ -348,6 +348,7 @@ def main(args=None): # Set the libvlc environment variable if we're frozen if getattr(sys, 'frozen', False): os.environ['PYTHON_VLC_LIB_PATH'] = str(AppLocation.get_directory(AppLocation.AppDir)) + log.debug(os.environ['PYTHON_VLC_LIB_PATH']) # Initialise the resources qInitResources() # Now create and actually run the application.