help-smalltalk
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Help-smalltalk] Re: [Summary] PackageLoader verbosity


From: Bruno Haible
Subject: [Help-smalltalk] Re: [Summary] PackageLoader verbosity
Date: Tue, 9 Dec 2003 21:51:06 +0100
User-agent: KMail/1.5

Hi,

Thanks to all who answered. I asked:

> $ gst -Q
> st> PackageLoader fileInPackage: 'I18N' !
>
> prints a message to standard output: "Loading package I18N".
> Is it possible to turn off this message (useful for a developer, but not
> for an end user), and if so: how?

The solution from Carey Evans and MSA goes as follows:

| saved sink |
saved := Transcript message.
sink := WriteStream with: String new.
Transcript message: sink -> #nextPutAll:.
PackageLoader fileInPackage: 'I18N'.
Transcript message: saved.
!

Bruno





reply via email to

[Prev in Thread] Current Thread [Next in Thread]