Skip to main content
The Deno 2 Release Candidate is here
Learn more
Go to Latest
variable debug
import { debug } from "https://deno.land/x/puppeteer@14.1.1/vendor/puppeteer-core/puppeteer/common/Debug.js";

A debug function that can be used in any environment.

Examples

Example 1

const log = debug('Page');

log('new page created')
// logs "Page: new page created"

type

(prefix: string) => (...args: unknown[]) => void