remove timestamp, it seems it's not present for all messages?

This commit is contained in:
Fredrik Eriksson 2024-07-14 16:41:49 +02:00
parent f759b8bb1e
commit fb33fa7596
Signed by: feffe
GPG Key ID: E6B5580B853D322B

View File

@ -52,7 +52,7 @@ def failure(name, failures, config):
reader.add_match(_SYSTEMD_INVOCATION_ID=latest_inv_id)
journal_txt = "\n".join(
[
f'{entry["_SOURCE_REALTIME_TIMESTAMP"]}: {entry["MESSAGE"]}'
entry["MESSAGE"]
for entry in list(reader)[-200:]
])