Remove leading newline from exception logging

The new log formatting makes this unnecessary.
This commit is contained in:
Erik Johnson 2016-04-04 13:24:10 -05:00
parent c6b2077263
commit 8e9b6dfba3

View File

@ -67,7 +67,7 @@ class ExceptionWrapper(Wrapper):
try: try:
self.workload() self.workload()
except: 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, thread=threading.current_thread().name,
time=time.strftime("%c"), time=time.strftime("%c"),
name=self.workload.__class__.__name__ name=self.workload.__class__.__name__