_satellite.notify
In DTM, this function provided a safe way to send messages to the dev console. In the bad old days, the use of console.log
, console.warn
, console.info
, and console.error
could cause problems on certain browsers, so the developers of DTM provided _satellite.notify
.
Remedy:
In Launch, _satellite.notify
has been deprecated. It still exists, but will be sunsetted at some point. It is advised to move to the _satellite.logger
functions.
In DTM, _satellite.notify
could only take one string argument.
In Launch,_satellite.logger.*
can be passed multiple arguments (strings, arrays, objects, etc) just likeconsole.*
Last updated