From 0954816a4fa367c3ecee62cef4ab1ec0e990b2f8 Mon Sep 17 00:00:00 2001 From: Sven Van Caekenberghe Date: Tue, 21 May 2024 16:29:11 +0200 Subject: [PATCH] use newer API in ZnLogEvent class>>#logToTranscript --- .../ZnLogEvent.class/class/logToTranscript.st | 5 ++++- .../Zinc-HTTP.package/monticello.meta/categories.st | 8 ++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/repository/Zinc-HTTP.package/ZnLogEvent.class/class/logToTranscript.st b/repository/Zinc-HTTP.package/ZnLogEvent.class/class/logToTranscript.st index 16e047b2..4845fdf6 100644 --- a/repository/Zinc-HTTP.package/ZnLogEvent.class/class/logToTranscript.st +++ b/repository/Zinc-HTTP.package/ZnLogEvent.class/class/logToTranscript.st @@ -1,4 +1,7 @@ convenience logToTranscript self stopLoggingToTranscript. - ^ self announcer when: ZnLogEvent do: [ :event | self crTrace: event ] \ No newline at end of file + ^ self announcer + when: ZnLogEvent + do: [ :event | self crTrace: event ] + for: self \ No newline at end of file diff --git a/repository/Zinc-HTTP.package/monticello.meta/categories.st b/repository/Zinc-HTTP.package/monticello.meta/categories.st index e69de29b..f7e23f08 100644 --- a/repository/Zinc-HTTP.package/monticello.meta/categories.st +++ b/repository/Zinc-HTTP.package/monticello.meta/categories.st @@ -0,0 +1,8 @@ +SystemOrganization addCategory: #'Zinc-HTTP'! +SystemOrganization addCategory: #'Zinc-HTTP-Client-Server'! +SystemOrganization addCategory: #'Zinc-HTTP-Core'! +SystemOrganization addCategory: #'Zinc-HTTP-Exceptions'! +SystemOrganization addCategory: #'Zinc-HTTP-Logging'! +SystemOrganization addCategory: #'Zinc-HTTP-Streaming'! +SystemOrganization addCategory: #'Zinc-HTTP-Support'! +SystemOrganization addCategory: #'Zinc-HTTP-Variables'!