UnixSyslogInterface.st
changeset 23151 0f2ee2d56903
parent 23147 65239d39db15
child 23220 6b814a812eb4
--- a/UnixSyslogInterface.st	Thu Jun 28 15:31:15 2018 +0200
+++ b/UnixSyslogInterface.st	Thu Jun 28 17:35:50 2018 +0200
@@ -360,10 +360,11 @@
 
     priority := PriorityMapping at:severity ifAbsent:5.
     messageAsSent := 
-            '%1 %2: %3'
+            '%1%2%3: %4'
                 bindWith:(facility ? 'STX')
 "/                with:'' "/ severity name
 "/                with:'' "/ (Timestamp now printStringFormat:(self timestampFormat))
+                with:(originator notEmptyOrNil ifTrue:'+' ifFalse:[''])
                 with:originator
                 with:message.
 
@@ -381,6 +382,7 @@
     "
 
     "Created: / 28-06-2018 / 11:08:04 / Stefan Vogel"
+    "Modified: / 28-06-2018 / 15:01:25 / Stefan Vogel"
 ! !
 
 !UnixSyslogInterface class methodsFor:'queries'!