File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change 11import subprocess
22import tempfile
3+ import logging
34import os
45import platform
56import zipfile
910
1011from .__about__ import __version__
1112
13+ logger = logging .getLogger (__name__ )
14+
1215
1316class XmlPowerToolsEngine (object ):
1417 def __init__ (self ):
@@ -19,8 +22,13 @@ def _unzip_binary(self):
1922 Unzips the appropriate C# binary for the current platform.
2023 """
2124 base_path = os .path .dirname (__file__ )
25+ logger .debug (f"Python redlining base path: { base_path } " )
26+
2227 binaries_path = os .path .join (base_path , 'dist' )
28+ logger .debug (f"Python redlining binaries path: { binaries_path } " )
29+
2330 target_path = os .path .join (base_path , 'bin' )
31+ logger .debug (f"Target path: { target_path } " )
2432
2533 if not os .path .exists (target_path ):
2634 os .makedirs (target_path )
You can’t perform that action at this time.
0 commit comments