If you pass a 'system' kwarg to log.msg then it will go in that field.
log.msg("hi", system="stuff") results in <date> [stuff] hi
message
: A tuple
of str
containing messages to be logged. system
: A str
which indicates the
"system" which is generating this event. isError
: A bool
indicating
whether this event represents an error. failure
: A failure.Failure
instance, required if the event is an error.
why
: Used as header of the traceback in case of
errors. format
: A string format used in place of message
to customize the event. The intent is for the observer to format
a message by doing something like format % eventDict
.
Don Dwiggins Advanced Publishing Technology