Debugging stuff

Blitz3D Forums/Blitz3D Programming/Debugging stuff

Picklesworth(Posted 2004) [#1]
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?


big10p(Posted 2004) [#2]
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.


GW(Posted 2004) [#3]
Overload your debuglog function..
Global DBGFile
Function DebugLog(Strng$="")
   If not DBGFile then DBGFile = Writefile("Debuglog.txt")
   Writeline(Strng$)
   Debuglog(Strng$)
End Function