abmp-npm 10.0.73 → 10.0.74
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* One session per full page load. First log call creates `loadId` (send this to support for GCL search).
|
|
3
|
-
* Logs
|
|
3
|
+
* Logs a plain object so DevTools shows an expandable tree; `loadId` is still easy to copy for GCL.
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
function randomSegment() {
|
|
@@ -45,7 +45,7 @@ function logHomePageLoadPhase(phase, detail) {
|
|
|
45
45
|
if (detail && typeof detail === 'object') {
|
|
46
46
|
payload.detail = detail;
|
|
47
47
|
}
|
|
48
|
-
console.log(
|
|
48
|
+
console.log('[HomePageLoad]', payload);
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
function getHomePageLoadId() {
|