Browse Source

Improved logging for filenames

bernhardbuhl 3 years ago
parent
commit
f4e18d5252
1 changed files with 1 additions and 0 deletions
  1. 1 0
      baangt/base/FilesOpen.py

+ 1 - 0
baangt/base/FilesOpen.py

@@ -20,6 +20,7 @@ def open(filenameAndPath: str):
         filenameAndPath = str(filenameAndPath)
 
     filenameAndPath = os.path.abspath(filenameAndPath)
+    logger.debug(f"Trying to open file with it's application: {filenameAndPath}")
 
     if not os.path.exists(filenameAndPath):
         logger.warning(f"Filename doesn't exist and can't be opened: {filenameAndPath}")