You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
letconfigurationObject={logUIConfiguration: {endpoint: 'ws://path-to-server:8000/ws/endpoint/',authorisationToken: 'AUTHTOKEN',// The authorisation token.verbose: true,browserEvents: {// See the Browser Events Wiki page.}},
...
However in buildVersion: 0.5.4a, and commit 09d1658e0d0678dc6be81e04a739dc1e17d48c4a of the master branch, in config.js we have:
varinitConfigObjects=function(suppliedConfigObject){Helpers.extendObject(_configProperties,Defaults.dispatcher);// Apply the defaults for the dispatcher.Helpers.extendObject(_configProperties,suppliedConfigObject.logUIConfiguration);// Apply the logUIConfiguration values from the supplied config object._applicationSpecificData=suppliedConfigObject.applicationSpecificData;_trackingConfig=suppliedConfigObject.trackingConfiguration;_browserEvents=suppliedConfigObject.browserEvents;returntrue;};
Showing that browserEvents should be on the same level as applicationSpecificData rather than nested within logUIConfiguration as shown in the documentation. After moving browserEvents like so:
From the Browser Events documentation we are given the config example below.
However in
buildVersion: 0.5.4a
, and commit09d1658e0d0678dc6be81e04a739dc1e17d48c4a
of the master branch, inconfig.js
we have:Showing that
browserEvents
should be on the same level asapplicationSpecificData
rather than nested withinlogUIConfiguration
as shown in the documentation. After movingbrowserEvents
like so:my configuration took effect.
The text was updated successfully, but these errors were encountered: