We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
on 2.19.0 there are console.log leftovers:
2.19.0
analytics-react-native/packages/core/src/analytics.ts
Line 429 in 887b23f
Line 482 in 887b23f
and several other places inside analytics.ts
analytics.ts
@segment+analytics-react-native+2.19.0.patch
diff --git a/node_modules/@segment/analytics-react-native/lib/commonjs/analytics.js b/node_modules/@segment/analytics-react-native/lib/commonjs/analytics.js index 5aa112f..afc354f 100644 --- a/node_modules/@segment/analytics-react-native/lib/commonjs/analytics.js +++ b/node_modules/@segment/analytics-react-native/lib/commonjs/analytics.js @@ -298,7 +298,6 @@ class SegmentClient { } async process(incomingEvent) { const event = this.applyRawEventData(incomingEvent); - console.log(`Process: ${this.isReady.value}`); if (this.isReady.value) { return this.startTimelineProcessing(event); } else { @@ -344,7 +343,6 @@ class SegmentClient { * @param isReady */ async onReady() { - console.log(`onReady, pendingEvents=${this.store.pendingEvents.get().length}`); // Add all plugins awaiting store if (this.pluginsToAdd.length > 0 && !this.isAddingPlugins) { this.isAddingPlugins = true; diff --git a/node_modules/@segment/analytics-react-native/lib/module/analytics.js b/node_modules/@segment/analytics-react-native/lib/module/analytics.js index 45c7325..f8a0783 100644 --- a/node_modules/@segment/analytics-react-native/lib/module/analytics.js +++ b/node_modules/@segment/analytics-react-native/lib/module/analytics.js @@ -292,7 +292,6 @@ export class SegmentClient { } async process(incomingEvent) { const event = this.applyRawEventData(incomingEvent); - console.log(`Process: ${this.isReady.value}`); if (this.isReady.value) { return this.startTimelineProcessing(event); } else { @@ -338,7 +337,6 @@ export class SegmentClient { * @param isReady */ async onReady() { - console.log(`onReady, pendingEvents=${this.store.pendingEvents.get().length}`); // Add all plugins awaiting store if (this.pluginsToAdd.length > 0 && !this.isAddingPlugins) { this.isAddingPlugins = true; diff --git a/node_modules/@segment/analytics-react-native/src/analytics.ts b/node_modules/@segment/analytics-react-native/src/analytics.ts index 4a4270a..2970277 100644 --- a/node_modules/@segment/analytics-react-native/src/analytics.ts +++ b/node_modules/@segment/analytics-react-native/src/analytics.ts @@ -426,8 +426,6 @@ export class SegmentClient { async process(incomingEvent: SegmentEvent) { const event = this.applyRawEventData(incomingEvent); - console.log(`Process: ${this.isReady.value}`); - if (this.isReady.value) { return this.startTimelineProcessing(event); } else { @@ -479,9 +477,6 @@ export class SegmentClient { * @param isReady */ private async onReady() { - console.log( - `onReady, pendingEvents=${this.store.pendingEvents.get().length}` - ); // Add all plugins awaiting store if (this.pluginsToAdd.length > 0 && !this.isAddingPlugins) { this.isAddingPlugins = true;
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
on
2.19.0
there are console.log leftovers:analytics-react-native/packages/core/src/analytics.ts
Line 429 in 887b23f
analytics-react-native/packages/core/src/analytics.ts
Line 482 in 887b23f
and several other places inside
analytics.ts
@segment+analytics-react-native+2.19.0.patch
The text was updated successfully, but these errors were encountered: