About Installer

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

About Installer

Hannes Hirzel
Hello

The class level documentation for the Installer class refers to

   http://installer.pbwiki.com/Installer

That page says

"Installer provides a simple Domain Specific Language for installing
packages from Monticello and SqueakMap of various version."

>From the code I see that there is an instance variable 'noiseLevel'.

And there is as well a class method protocol called 'logging' but it
only contains one method

log: aString

        Transcript show: aString; cr.


My questions:
1) What is the Installer DSL expression for raising the noiseLevel
2) I assume the log  goes to Transcript. Is there another option?


Thank you for the answers in advance

Hannes
_______________________________________________
Beginners mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/beginners
Reply | Threaded
Open this post in threaded view
|

Re: About Installer

Bert Freudenberg
On 20.07.2012, at 00:48, H. Hirzel wrote:

I see that there is an instance variable 'noiseLevel'.

1) What is the Installer DSL expression for raising the noiseLevel

Right-click the class name in the classes list, choose "assignments..." from the menu, then select the "noiseLevel" instance variable. This will show you the methods which change the noiseLevel.



And there is as well a class method protocol called 'logging' but it
only contains one method

log: aString

Transcript show: aString; cr.


2) I assume the log  goes to Transcript. Is there another option?

No. If you want to change that, note that there are instance-side logging methods too.

- Bert -



_______________________________________________
Beginners mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/beginners