NonInteractiveTranscript is usually the class then, so no need to File stdout anything I guess.

NonInteractiveTranscript install is "de rigueur" for CLI style apps.

Phil

On Wed, Sep 23, 2015 at 1:16 PM, stepharo <stepharo@free.fr> wrote:
Hi

I have the impression that some references to Transcript should be rewritten as File stdout

For example

DummyUIManager>>unhandledErrorDefaultAction: anException

�� �� Transcript show: '*** EXCEPTION ***'; cr.
�� �� Transcript show: anException; cr.
�� �� Transcript show: (thisContext stack first: (20 min: thisContext stack size)); cr.
�� �� anException isResumable ifTrue: [ anException resume ]

Stef