Files
medusa-store/www/reference/.cache/debug-log.js
2022-12-07 20:28:32 +01:00

14 lines
382 B
JavaScript

// inspired by https://github.com/GoogleChrome/workbox/blob/3d02230f0e977eb1dc86c48f16ea4bcefdae12af/packages/workbox-core/src/_private/logger.ts
const styles = [
`background: rebeccapurple`,
`border-radius: 0.5em`,
`color: white`,
`font-weight: bold`,
`padding: 2px 0.5em`,
].join(`;`)
export function debugLog(...args) {
console.debug(`%cgatsby`, styles, ...args)
}