The debug log file may be very large and attempting to use Notepad to read it may be problematic, so here is a much more efficient way.
- Type in `Powershell ISE` into the Windows Start Menu
- Get-Content C:\Users\<username>\AppData\Roaming\veil\debug.log –Wait
Alternatively, you can install Notepad++ and use a Document Monitor plugin to give the "tail" (follow new lines being written) ability to Notepad++. At the least, Notepad++ is vastly better at viewing large files than Notepad.exe. Any of your preferred programmers' text editors should be a practical way to read the debug.log file outside the Command Line Interface.
Related: