Skip to content

Commit 56ec5fc

Browse files
committed
chore: track the full received data to analytics log file
1 parent 9bbe385 commit 56ec5fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/services/analytics/analytics-broker-process.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ const trackPreviewAppData = async (data: any) => {
8282
};
8383

8484
process.on("message", async (data: ITrackingInformation) => {
85-
analyticsLoggingService.logData({ message: `analytics-broker-process received message of type: ${data.type}` });
85+
analyticsLoggingService.logData({ message: `analytics-broker-process received message of type: ${JSON.stringify(data)}` });
8686

8787
if (data.type === TrackingTypes.Finish) {
8888
receivedFinishMsg = true;

0 commit comments

Comments
 (0)