Levente Uzonyi uploaded a new version of MonticelloConfigurations to project The Trunk:
http://source.squeak.org/trunk/MonticelloConfigurations-ul.73.mcz==================== Summary ====================
Name: MonticelloConfigurations-ul.73
Author: ul
Time: 11 January 2010, 8:22:07.795 am
UUID: 894e17cb-597c-4846-a5c4-f78d73126cb4
Ancestors: MonticelloConfigurations-ar.72
- code critics
=============== Diff against MonticelloConfigurations-ar.72 ===============
Item was changed:
----- Method: MCConfiguration>>log (in category 'accessing') -----
log
"Answer the receiver's log. If no log exist use the default log"
^log ifNil: [
(name notNil and: [ self class logToFile ]) ifFalse: [ ^Transcript ].
+ self log: ((FileStream fileNamed: self logFileName) setToEnd; yourself).
- self log: (FileStream fileNamed: self logFileName) setToEnd; yourself.
log ]!