Skip to content

Commit

Permalink
Add output logs in raw commands
Browse files Browse the repository at this point in the history
  • Loading branch information
lowlighter committed Feb 11, 2021
1 parent a0eaef9 commit 1dd2d15
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions source/app/metrics/utils.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,8 @@
child.stderr.on("data", data => stderr += data)
child.on("close", code => {
console.debug(`metrics/command > ${command} > exited with code ${code}`)
console.debug(stdout)
console.debug(stderr)
return code === 0 ? solve(stdout) : reject(stderr)
})
})
Expand Down
1 change: 1 addition & 0 deletions source/app/web/statics/style.vars.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/**https://github.com/primer/css/blob/master/LICENSE*/
.dark {
--color-scale-black: #010409;
--color-scale-white: #f0f6fc;
Expand Down

0 comments on commit 1dd2d15

Please sign in to comment.