feat: add meta to logger (#437)

This commit is contained in:
Jef LeCompte
2020-10-03 13:20:32 -04:00
committed by GitHub
parent 8098a31092
commit ae6bc86bcb
3 changed files with 14 additions and 10 deletions
+1 -1
View File
@@ -52,7 +52,7 @@ async function main() {
const promises = [];
for (const store of Stores) {
logger.debug(store.links);
logger.debug('store links', {meta: {links: store.links}});
if (store.setupAction !== undefined) {
store.setupAction(browser);
}