Skip to content

Commit

Permalink
Changed 'Transcript show:' construct to 'self trace'
Browse files Browse the repository at this point in the history
  • Loading branch information
PosledniAmir committed Mar 30, 2024
1 parent bd7b7bd commit 7ac07f1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Beacon-Core/TranscriptLogger.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ Class {
{ #category : 'utilities' }
TranscriptLogger >> nextPut: anAnnouncement [

Transcript crShow: anAnnouncement
anAnnouncement crTrace
]
2 changes: 1 addition & 1 deletion src/DebugPoints/TranscriptBehavior.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ TranscriptBehavior class >> isAbstract [

{ #category : 'execution' }
TranscriptBehavior >> execute [
Transcript show: self text.
self text trace.
^true
]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ RBSmalllintTestObject >> toDoWithIncrement [

{ #category : 'methods' }
RBSmalllintTestObject >> transcriptMentioned [
Transcript show: 'message'
'message' trace
]

{ #category : 'accessing - good' }
Expand Down

0 comments on commit 7ac07f1

Please sign in to comment.