From 591ed2977e19147fb07edc784f28bb4f1db5b490 Mon Sep 17 00:00:00 2001 From: Sven Van Caekenberghe Date: Fri, 2 Apr 2021 18:03:47 +0200 Subject: [PATCH] Fix P3LogEvent class>>logToTranscript to use #crShow: instead of #crLog --- P3/P3LogEvent.class.st | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/P3/P3LogEvent.class.st b/P3/P3LogEvent.class.st index 113e8b1..931befd 100644 --- a/P3/P3LogEvent.class.st +++ b/P3/P3LogEvent.class.st @@ -51,7 +51,7 @@ P3LogEvent class >> logToTranscript [ self stopLoggingToTranscript. ^ self announcer when: self - do: [ :event | event crLog ] + do: [ :event | Transcript crShow: event ] ] { #category : #accessing }