Merge pull request #8959 from maralorn/print-parent

Print parent activity field in json log
This commit is contained in:
Théophane Hufschmitt 2023-09-13 11:41:47 +02:00 committed by GitHub
commit b99fdcf8db
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -220,8 +220,8 @@ struct JSONLogger : Logger {
json["level"] = lvl;
json["type"] = type;
json["text"] = s;
json["parent"] = parent;
addFields(json, fields);
// FIXME: handle parent
write(json);
}