netLog
记录会话的网络事件。
进程:主进程
const { app, netLog } = require('electron')
app.whenReady().then(async () => {
await netLog.startLogging('/path/to/net-log')
// After some network events
const path = await netLog.stopLogging()
console.log('Net-logs written to', path)
})
查看 --log-net-log
记录应用生命周期的网络事件。
** 注意: **除了指定的方法, 其他方法只能在 app
模块的 ready
事件被触发后使用。
方法
netLog.startLogging(path[, options])
path
string - 记录网络日志的文件路径。
Returns Promise<void>
- 当网络日志开始录制时解析
开始记录网络事件日志到 path
。
netLog.stopLogging()
Returns Promise<void>
- 当网络日志被刷新到磁盘时解析
停止网络事件日志的记录。 如果未被调用,net 记录将自动结束当 app 退出的时候。
属性
netLog.currentlyLogging
只读
boolean
属性表示当前是否正在记录网络日志。