Set a logpoint - Firefox Developer Tools 编辑
Sometimes you want to view a value in your code but you don't want to pause execution. Rather than sprinkle console.log()
statements throughout your code, you can use a special type of breakpoint, the logpoint. Logpoints print a message to the Console panel instead of pausing code execution.
The logpoint is especially useful in cases where breaking the execution breaks testing procedures, such as when you are debugging popup windows, or executing focus-related logic.
To create a logpoint:
- Right click on a line number in the Debugger panel and pick Add log action from the context menu.
- Create an expression inline. The result is logged in the console panel every time the line with the logpoint executes. You can use any variable or function available in the current scope.
Working with logpoints
When you set a logpoint, the indicator is purple, rather than the blue of an unconditional breakpoint or the orange of a conditional breakpoint.
You can view the list of logpoints in the Breakpoints side panel.
When execution hits a logpoint, the message you have defined is logged to the console. You can make it easier to see the message by opening a split console under the debugger. (Either press Esc or select the ellipsis menu (...) and then click Show Split Console.)
When should you use logpoints?
- When you want to know that a specific line in your code has executed, but you don’t want to break code execution, set a logpoint.
- Logpoints are useful to log the value of a variable at a specific point in the code. It’s faster than changing the underlying source code itself to add calls to the
console.log
method. - If you need to execute additional logic related to the source code and you can’t change the source code itself, you can use a logpoint.
- Note that you can use logpoints with source-mapped code, as well as with your unmapped source files.
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论