tracing.disable()
添加于:v10.0.0
禁用此 Tracing
对象。
只有其他启用的Tracing
对象未涵盖且未由--trace-event-categories
标志指定的跟踪事件类别将被禁用。
const trace_events = require('node:trace_events');
const t1 = trace_events.createTracing({ categories: ['node', 'v8'] });
const t2 = trace_events.createTracing({ categories: ['node.perf', 'node'] });
t1.enable();
t2.enable();
// Prints 'node,node.perf,v8'
console.log(trace_events.getEnabledCategories());
t2.disable(); // Will only disable emission of the 'node.perf' category
// Prints 'node,v8'
console.log(trace_events.getEnabledCategories());
相关用法
- Node.js assert.CallTracker tracker.report()用法及代码示例
- Node.js assert.CallTracker tracker.calls([fn][, exact])用法及代码示例
- Node.js assert.CallTracker tracker.verify()用法及代码示例
- Node.js trace_events.createTracing(options)用法及代码示例
- Node.js trace_events.getEnabledCategories()用法及代码示例
- Node.js trace_events.createTracing()用法及代码示例
- Node.js transform._transform(chunk, encoding, callback)用法及代码示例
- Node.js trim()用法及代码示例
- Node.js tlsSocket.authorized用法及代码示例
- Node.js tls.DEFAULT_MAX_VERSION用法及代码示例
- Node.js timersPromises.setTimeout([delay[, value[, options]]])用法及代码示例
- Node.js tlsSocket.disableRenegotiation()用法及代码示例
- Node.js tlsSocket.address()用法及代码示例
- Node.js tlsSocket.remoteAddress用法及代码示例
- Node.js tlsSocket.setMaxSendFragment()用法及代码示例
- Node.js tlsSocket.getProtocol()用法及代码示例
- Node.js tlsSocket.exportKeyingMaterial()用法及代码示例
- Node.js tls.DEFAULT_ECDH_CURVE用法及代码示例
- Node.js tty.WriteStream.hasColors([count][, env])用法及代码示例
- Node.js tlsSocket.getPeerFinished()用法及代码示例
- Node.js tlsSocket.getFinished()用法及代码示例
- Node.js timersPromises.setImmediate([value[, options]])用法及代码示例
- Node.js text转speech用法及代码示例
- Node.js tlsSocket.authorizationError用法及代码示例
- Node.js tlsSocket.getPeerCertificate()用法及代码示例
注:本文由纯净天空筛选整理自nodejs.org大神的英文原创作品 tracing.disable()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。