Skip to content

Commit

Permalink
More improvements to the printing of ZnLogEvents
Browse files Browse the repository at this point in the history
  • Loading branch information
svenvc committed Sep 30, 2023
1 parent ee6d13b commit 0b99553
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
printing
printHeaderOn: stream
super printHeaderOn: stream.
clientId ifNotNil: [ stream space; << clientId ]
clientId ifNotNil: [ stream space; << clientId asString ]
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
printing
printHeaderOn: stream
super printHeaderOn: stream.
serverId ifNotNil: [ stream space; << serverId ]
serverId ifNotNil: [ stream space; << serverId asString ]
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
printing
printContentsOn: stream
super printContentsOn: stream.
stream << 'Started '; << description
description ifNotNil: [ stream << 'Started '; << description ]
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
printing
printContentsOn: stream
super printContentsOn: stream.
stream << 'Stopped '; << description
description ifNotNil: [ stream << 'Stopped '; << description ]

0 comments on commit 0b99553

Please sign in to comment.