Skip to main content

Debugging

Functions

addDebuggingFunctions()

Extends the global pendo object with additional functionality for debugging purposes.

disableDebugging()

Removes Pendo Debugger extension.

disableLogging()

Disable [Agent] console logging for debugging purposes.

enableDebugging()

Loads Pendo Debugger and extends the global pendo object with additional functionality for debugging purposes.

enableLogging()

Enable [Agent] console logging for debugging purposes.

isDebuggingEnabled()

Returns a string indicating debugging status. Pass an optional value of true to get result as a boolean.

logPublic()

Logs an output to the console as the [Agent].

addDebuggingFunctions()

Extends the global pendo object with additional functionality for debugging purposes.

Kind: global function
Category: Debugging
Access: public
Example

pendo.addDebuggingFunctions()

disableDebugging()

Removes Pendo Debugger extension.

Kind: global function
Category: Debugging
Access: public
Example

pendo.disableDebugging()

disableLogging()

Disable [Agent] console logging for debugging purposes.

Kind: global function
Category: Debugging
Access: public
Example

pendo.disableLogging()

enableDebugging()

Loads Pendo Debugger and extends the global pendo object with additional functionality for debugging purposes.

Kind: global function
Category: Debugging
Access: public
Example

pendo.enableDebugging()

enableLogging()

Enable [Agent] console logging for debugging purposes.

Kind: global function
Category: Debugging
Access: public
Example

pendo.enableLogging()

isDebuggingEnabled()

Returns a string indicating debugging status. Pass an optional value of true to get result as a boolean.

Kind: global function
Category: Debugging
Access: public
Example

pendo.isDebuggingEnabled() => 'false'

Example

pendo.isDebuggingEnabled(true) => false

logPublic()

Logs an output to the console as the [Agent].

Kind: global function
Category: Debugging
Access: public
Example

pendo.log('hello world!')
// [Agent] hello world!