Skip to content

Commit

Permalink
fix: less whitespace in debug
Browse files Browse the repository at this point in the history
  • Loading branch information
balazsorban44 committed Oct 3, 2023
1 parent 09b354c commit 79e3eeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/monorepo-release/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const log = {
debug(...args) {
if (!defaultConfig.verbose) return
const [first, ...rest] = args
console.log(gray("\n[debug]"), `${first}\n${rest.join("\n")}\n`)
console.log(gray("[debug]"), `${first}\n${rest.join("\n")}`)
},
info(...args) {
console.log(blue("[info]"), ...args)
Expand Down

0 comments on commit 79e3eeb

Please sign in to comment.