Skip to content

$eventInfo

$eventInfo will give the given property when nodeError, nodeDestroy, etc. events emitted.

Usage

$eventInfo[property]

Parameters

Field Type Description Required
property string Event property (see bellow ) true

Property

Field Returns Description
name string Node name
error string Error
left number Node reconnecting tries left
code string Error code
interval number Node reconnecting interval
reason string Error reason
count number Node disconnected count
info string Node debug info
json unknown Node raw json

Example(s)

This will give the given property when nodeError, nodeDestroy, etc. events emitted.

1
voice.nodeDebug({
2
name: "eventinfo",
3
code: `
4
$log[$eventInfo[name]: $eventInfo[info]]
5
`
6
});