Remove leading newline from exception logging
The new log formatting makes this unnecessary.
This commit is contained in:
parent
c6b2077263
commit
8e9b6dfba3
@ -67,7 +67,7 @@ class ExceptionWrapper(Wrapper):
|
||||
try:
|
||||
self.workload()
|
||||
except:
|
||||
message = "\n> Exception in {thread} at {time}, module {name}".format(
|
||||
message = "Exception in {thread} at {time}, module {name}".format(
|
||||
thread=threading.current_thread().name,
|
||||
time=time.strftime("%c"),
|
||||
name=self.workload.__class__.__name__
|
||||
|
Loading…
Reference in New Issue
Block a user