Skip to content
Snippets Groups Projects
Commit 5cb02acf authored by Michael Kriese's avatar Michael Kriese Committed by Rhys Arkins
Browse files

fix/logger): meta should be logged as meta (#4258)

parent ba7b3c66
No related branches found
No related tags found
No related merge requests found
......@@ -48,7 +48,7 @@ const logFactory = (level: bunyan.LogLevelString): any => {
bunyanLogger[level](meta, p1);
} else {
// only meta provided
bunyanLogger[level](meta, p1);
bunyanLogger[level]({ ...meta, ...p1 });
}
};
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment