The Trunk: MonticelloConfigurations-ul.68.mcz

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

The Trunk: MonticelloConfigurations-ul.68.mcz

commits-2
Levente Uzonyi uploaded a new version of MonticelloConfigurations to project The Trunk:
http://source.squeak.org/trunk/MonticelloConfigurations-ul.68.mcz

==================== Summary ====================

Name: MonticelloConfigurations-ul.68
Author: ul
Time: 15 December 2009, 1:47:53 am
UUID: d972cada-68d8-3b49-b2f4-483aa69f3ba0
Ancestors: MonticelloConfigurations-ul.67

- write to the end of the logfile instead of beginning

=============== Diff against MonticelloConfigurations-ul.67 ===============

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).
  log ]!