Hiding violations in Chrome Dev Console

前端 未结 3 1308
时光取名叫无心
时光取名叫无心 2020-12-24 13:35

Starting a few versions ago, Google Chrome has started showing JS violations in the developer console. While that can be useful sometimes, more often it is just cluttering t

相关标签:
3条回答
  • 2020-12-24 13:54

    Another option:

    1. Open Console Settings (the gear icon).
    2. Check the User Messages Only checkbox to only show messages logged from scripts. Browser violations are hidden when this checkbox is enabled.

    Chrome version: 62.0.3169.0 (Official Build) canary (64-bit)

    0 讨论(0)
  • 2020-12-24 14:01

    In latest Chrome (64.0.3282.167), add the following to your "Filter" box with "All levels" selected:

    -[Violation]
    

    Not sure if any sort of Regex is supported any longer (previous versions of Chrome had a checkbox that allowed you to filter by expression), but the - seems to be a "don't match".

    0 讨论(0)
  • 2020-12-24 14:01

    Yes, as of Chrome 58:

    • The Hide violations checkbox is gone. Set the logging level dropdown
      to Verbose to see violations.

    In the following screenshot, it is set to "Info":

    0 讨论(0)
提交回复
热议问题