A tool to capture and write DebugView logs to files. Useful for saving logs emitted from Stormworks addons/mods via debug.log, etc.
This will only work on Windows as DebugView logs are a Windows-native thing.
- Go to latest release.
- Download the app ZIP.
- Extract it to a directory of your choosing.
- Open CMD in the directory, and run
DebugViewLogger --help. - Optional: Add the directory to path so you can run
DebugViewLoggeranywhere.
git clonethis repo.- Run
pip install -r requirements.txtto install required Python packages. cdintosrc, and runpy main.py --helpto see all commands.
- Run
DebugViewLogger --helpto see all commands. - Run
DebugViewLogger startto start capturing logs.
You can configure a few settings too using the following arguments that must be before start:
- Set custom log directory:
DebugViewLogger --log-dir "(path)" start - Set custom log size (in MB):
DebugViewLogger --max-log-size 500 start - Set max number of log files:
DebugViewLogger --max-logs 5 start
Example: Log to "../my_logs", max of 10 log files, and each log file can, at max, be 2500 MB.
DebugViewLogger --log-dir "../my_logs" --max-log-size 2500 --max-logs 10 start
OR
DebugViewLogger -l "../my_logs" -m 2500 -n 10 start
- DebugView++: Console version of this app is used for capturing logs.
- Cuh4 (GitHub)