Debugging stuff
Blitz3D Forums/Blitz3D Programming/Debugging stuff
| ||
| I once had this, but the feature seems to be gone. How can I get the debug log to display in the blitz IDE so that it can still be viewed even after the program is executed? |
| ||
| You can't. I believe you used to be able to do this way back (before I discovered Blitz) before the IDE was separated from the compiler - or something. |
| ||
Overload your debuglog function..
Global DBGFile
Function DebugLog(Strng$="")
If not DBGFile then DBGFile = Writefile("Debuglog.txt")
Writeline(Strng$)
Debuglog(Strng$)
End Function
|