Index: Core/RequestHandlers/ErrorHandler.st =================================================================== --- Core/RequestHandlers/ErrorHandler.st (revision 1368) +++ Core/RequestHandlers/ErrorHandler.st (working copy) @@ -82,14 +82,17 @@ produceVerboseResponse [ - self respond: [:response || page e | - response nextPutAll: (String streamContents: [:stream | + |info| + info := WriteStream on: String new. + self error inspectOn: info. + self error context backtraceOn: info. + FileStream stderr nextPutAll: info contents. + self respond: [:response || page | page := Page new. page bodyElement h1: 'Internal Error'; h2: self error description; h3: self error messageText; - preformatted: (String streamContents: [:str | - self error resumeContext backtraceOn: str]). - page build printHtmlOn: stream])] + preformatted: info contents. + page build printHtmlOn: response] ] ]