Skip to content

Commit af9f94b

Browse files
authored
Remove console statements (#341)
* fix * fix --------- Co-authored-by: mitch prewitt <[email protected]>
1 parent 9e78766 commit af9f94b

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/embedded/embeddedSessionManager.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ export class EmbeddedSessionManager {
5555

5656
public startSession() {
5757
if (this.isTracking()) {
58-
console.log('Embedded session started twice');
5958
return;
6059
}
6160

@@ -64,7 +63,6 @@ export class EmbeddedSessionManager {
6463

6564
public async endSession() {
6665
if (!this.isTracking()) {
67-
console.log('Embedded session ended without start');
6866
return;
6967
}
7068

@@ -74,7 +72,6 @@ export class EmbeddedSessionManager {
7472
this.session.end = new Date();
7573

7674
if (!this.session.impressions?.length) {
77-
console.log('No impressions in the session. Skipping tracking.');
7875
return;
7976
}
8077

@@ -111,12 +108,10 @@ export class EmbeddedSessionManager {
111108
this.impressions.get(messageId);
112109

113110
if (!impressionData) {
114-
console.log('onMessageImpressionEnded: impressionData not found');
115111
return;
116112
}
117113

118114
if (impressionData?.start === null) {
119-
console.log('onMessageImpressionEnded: impressionStarted is null');
120115
return;
121116
}
122117

0 commit comments

Comments
 (0)