API Reference
Error Monitoring
Getting Started
Welcome to Highlight
Integrations
Product Features
Session Replay
Tips
Menu

H.start()

This method is used to start Highlight if H.init() was called with manualStart set to true.

H.start(options: StartOptions)
Copy
options
  • silent (boolean): specifies whether console.warn messages created in this method should be skipped.
Example
H.init('<YOUR_PROJECT_ID>', { manualStart: true, }) // Elsewhere in your app H.start({ silent: false, })
Copy