Comment #2 on issue 339 by
[hidden email]: Better debugging support
for FastCGI
http://code.google.com/p/glassdb/issues/detail?id=339The code in FSGsSocketServer>>notifyUnreportableError: should look like
this:
notifyUnreportableError: aString
"unconditional logging to stdout"
| stdout stack |
stack := GsProcess stackReportToLevel: 300.
stdout := GsFile stdoutServer.
stdout nextPutAll: '----------- Unreportable ERROR Encountered: ',
DateAndTime now printString.
stdout nextPutAll: aString.
stdout cr.
stdout nextPutAll: stack.
stdout nextPutAll: '-----------'.
stdout cr.
stdout close.