当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js console.profile([label])用法及代码示例


console.profile([label])

添加于:v8.0.0

参数

除非在检查器中使用,否则此方法不会显示任何内容。 console.profile() 方法使用可选标签启动 JavaScript CPU 配置文件,直到调用 console.profileEnd() 。然后将配置文件添加到检查器的配置文件面板中。

console.profile('MyLabel');
// Some code
console.profileEnd('MyLabel');
// Adds the profile 'MyLabel' to the Profiles panel of the inspector.

相关用法


注:本文由纯净天空筛选整理自nodejs.org大神的英文原创作品 console.profile([label])。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。