We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bbe385 commit 56ec5fcCopy full SHA for 56ec5fc
lib/services/analytics/analytics-broker-process.ts
@@ -82,7 +82,7 @@ const trackPreviewAppData = async (data: any) => {
82
};
83
84
process.on("message", async (data: ITrackingInformation) => {
85
- analyticsLoggingService.logData({ message: `analytics-broker-process received message of type: ${data.type}` });
+ analyticsLoggingService.logData({ message: `analytics-broker-process received message of type: ${JSON.stringify(data)}` });
86
87
if (data.type === TrackingTypes.Finish) {
88
receivedFinishMsg = true;
0 commit comments