Fixed issue with log entries without exception stack

pull/1334/head
morpheus65535 4 years ago
parent 54eb0fc174
commit ac8eb62de0

@ -521,6 +521,7 @@ class SystemLogs(Resource):
log["timestamp"] = lin[0] log["timestamp"] = lin[0]
log["type"] = lin[1].rstrip() log["type"] = lin[1].rstrip()
log["message"] = lin[3] log["message"] = lin[3]
if len(lin) > 4:
if lin[4] != '\n': if lin[4] != '\n':
log['exception'] = lin[4].strip('\'').replace(' ', '\u2003\u2003') log['exception'] = lin[4].strip('\'').replace(' ', '\u2003\u2003')
logs.append(log) logs.append(log)

Loading…
Cancel
Save