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 - 用于记录网络日志的文件路径。
返回 Promise<void>
- 当网络日志开始记录时解析。
开始将网络事件记录到 path
。
netLog.stopLogging()
返回 Promise<void>
- 当网络日志已刷新到磁盘时解析。
停止记录网络事件。如果不调用此方法,则在应用程序退出时网络日志记录将自动结束。
属性
netLog.currentlyLogging
只读
一个 boolean
属性,指示当前是否正在记录网络日志。