10 lines
433 B
JavaScript
10 lines
433 B
JavaScript
"use strict";
|
|
|
|
exports.__esModule = true;
|
|
exports.debugLog = debugLog;
|
|
// 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(`;`);
|
|
|
|
function debugLog(...args) {
|
|
console.debug(`%cgatsby`, styles, ...args);
|
|
} |