Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: configure debug logging in browser #6210

Merged
merged 1 commit into from Jul 20, 2020

Commits on Jul 13, 2020

  1. fix: configure debug logging in browser

    The Node debug library uses the `DEBUG` environment variable to
    configure what gets logged. Our browser version just logs everything;
    this commit changes it to look for `window.__PUPPETEER_DEBUG` and matches the behaviour accordingly:
    
    * If the value is not set, nothing is logged.
    * If the value is set to `*` everything is logged.
    * If the value is set to a string `foo`, messages with that prefix are
      logged.
    * If the value is set to a string ending in `*`, e.g. `foo*`, messages
      with prefixes that start with `foo` are logged.
    jackfranklin committed Jul 13, 2020
    Copy the full SHA
    3e5caad View commit details
    Browse the repository at this point in the history