File tree 1 file changed +0
-5
lines changed
1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,6 @@ export class EmbeddedSessionManager {
55
55
56
56
public startSession ( ) {
57
57
if ( this . isTracking ( ) ) {
58
- console . log ( 'Embedded session started twice' ) ;
59
58
return ;
60
59
}
61
60
@@ -64,7 +63,6 @@ export class EmbeddedSessionManager {
64
63
65
64
public async endSession ( ) {
66
65
if ( ! this . isTracking ( ) ) {
67
- console . log ( 'Embedded session ended without start' ) ;
68
66
return ;
69
67
}
70
68
@@ -74,7 +72,6 @@ export class EmbeddedSessionManager {
74
72
this . session . end = new Date ( ) ;
75
73
76
74
if ( ! this . session . impressions ?. length ) {
77
- console . log ( 'No impressions in the session. Skipping tracking.' ) ;
78
75
return ;
79
76
}
80
77
@@ -111,12 +108,10 @@ export class EmbeddedSessionManager {
111
108
this . impressions . get ( messageId ) ;
112
109
113
110
if ( ! impressionData ) {
114
- console . log ( 'onMessageImpressionEnded: impressionData not found' ) ;
115
111
return ;
116
112
}
117
113
118
114
if ( impressionData ?. start === null ) {
119
- console . log ( 'onMessageImpressionEnded: impressionStarted is null' ) ;
120
115
return ;
121
116
}
122
117
You can’t perform that action at this time.
0 commit comments