🩹 back: logger used to merge AsyncContext for each entry, it should not (#714)
This commit is contained in:
committed by
Anton Shepilov
parent
dcadfa4231
commit
b04f64a2b0
@@ -10,7 +10,8 @@ export const logger = pino({
|
|||||||
name: "TdriveApp",
|
name: "TdriveApp",
|
||||||
level: config.get("level", "info") || "info",
|
level: config.get("level", "info") || "info",
|
||||||
mixin() {
|
mixin() {
|
||||||
return executionStorage.getStore() ? executionStorage.getStore() : {};
|
const store = executionStorage.getStore();
|
||||||
|
return store ? { ...store } : {};
|
||||||
},
|
},
|
||||||
formatters: {
|
formatters: {
|
||||||
level(label: string) {
|
level(label: string) {
|
||||||
|
|||||||
Reference in New Issue
Block a user