Logging
Quick answer
- Log file:
%TEMP%\\cbxshell_debug.log - Best tool:
Get-Content ... -Waitto tail in PowerShell - Use case: Troubleshooting thumbnail generation and archive parsing
CBXShell writes debug logs to a temp file for troubleshooting:
C:\Users\<username>\AppData\Local\Temp\cbxshell_debug.logTail logs in PowerShell:
Get-Content "$env:TEMP\cbxshell_debug.log" -Wait