@@ -24,6 +24,7 @@ function Rollbar(options, client) {
24
24
if ( this . options . captureUnhandledRejections ) {
25
25
globals . captureUnhandledRejections ( window , this ) ;
26
26
}
27
+ this . lastError = null ;
27
28
}
28
29
29
30
var _instance = null ;
@@ -72,6 +73,9 @@ Rollbar.configure = function(options) {
72
73
Rollbar . prototype . log = function ( ) {
73
74
var item = this . _createItem ( arguments ) ;
74
75
var uuid = item . uuid ;
76
+ if ( this . _sameAsLastError ( item ) ) {
77
+ return ;
78
+ }
75
79
this . client . log ( item ) ;
76
80
return { uuid : uuid } ;
77
81
} ;
@@ -87,6 +91,9 @@ Rollbar.log = function() {
87
91
Rollbar . prototype . debug = function ( ) {
88
92
var item = this . _createItem ( arguments ) ;
89
93
var uuid = item . uuid ;
94
+ if ( this . _sameAsLastError ( item ) ) {
95
+ return ;
96
+ }
90
97
this . client . debug ( item ) ;
91
98
return { uuid : uuid } ;
92
99
} ;
@@ -102,6 +109,9 @@ Rollbar.debug = function() {
102
109
Rollbar . prototype . info = function ( ) {
103
110
var item = this . _createItem ( arguments ) ;
104
111
var uuid = item . uuid ;
112
+ if ( this . _sameAsLastError ( item ) ) {
113
+ return ;
114
+ }
105
115
this . client . info ( item ) ;
106
116
return { uuid : uuid } ;
107
117
} ;
@@ -117,6 +127,9 @@ Rollbar.info = function() {
117
127
Rollbar . prototype . warn = function ( ) {
118
128
var item = this . _createItem ( arguments ) ;
119
129
var uuid = item . uuid ;
130
+ if ( this . _sameAsLastError ( item ) ) {
131
+ return ;
132
+ }
120
133
this . client . warn ( item ) ;
121
134
return { uuid : uuid } ;
122
135
} ;
@@ -132,6 +145,9 @@ Rollbar.warn = function() {
132
145
Rollbar . prototype . warning = function ( ) {
133
146
var item = this . _createItem ( arguments ) ;
134
147
var uuid = item . uuid ;
148
+ if ( this . _sameAsLastError ( item ) ) {
149
+ return ;
150
+ }
135
151
this . client . warning ( item ) ;
136
152
return { uuid : uuid } ;
137
153
} ;
@@ -147,6 +163,9 @@ Rollbar.warning = function() {
147
163
Rollbar . prototype . error = function ( ) {
148
164
var item = this . _createItem ( arguments ) ;
149
165
var uuid = item . uuid ;
166
+ if ( this . _sameAsLastError ( item ) ) {
167
+ return ;
168
+ }
150
169
this . client . error ( item ) ;
151
170
return { uuid : uuid } ;
152
171
} ;
@@ -162,6 +181,9 @@ Rollbar.error = function() {
162
181
Rollbar . prototype . critical = function ( ) {
163
182
var item = this . _createItem ( arguments ) ;
164
183
var uuid = item . uuid ;
184
+ if ( this . _sameAsLastError ( item ) ) {
185
+ return ;
186
+ }
165
187
this . client . critical ( item ) ;
166
188
return { uuid : uuid } ;
167
189
} ;
@@ -198,6 +220,9 @@ Rollbar.prototype.handleUncaughtException = function(message, url, lineno, colno
198
220
}
199
221
item . level = this . options . uncaughtErrorLevel ;
200
222
item . _isUncaught = true ;
223
+ if ( this . _sameAsLastError ( item ) ) {
224
+ return ;
225
+ }
201
226
this . client . log ( item ) ;
202
227
} ;
203
228
@@ -226,6 +251,9 @@ Rollbar.prototype.handleUnhandledRejection = function(reason, promise) {
226
251
item . _isUncaught = true ;
227
252
item . _originalArgs = item . _originalArgs || [ ] ;
228
253
item . _originalArgs . push ( promise ) ;
254
+ if ( this . _sameAsLastError ( item ) ) {
255
+ return ;
256
+ }
229
257
this . client . log ( item ) ;
230
258
} ;
231
259
@@ -371,6 +399,14 @@ Rollbar.prototype._createItem = function(args) {
371
399
return item ;
372
400
} ;
373
401
402
+ Rollbar . prototype . _sameAsLastError = function ( item ) {
403
+ if ( this . lastError === item . err && this . lastError ) {
404
+ return true ;
405
+ }
406
+ this . lastError = item . err ;
407
+ return false ;
408
+ } ;
409
+
374
410
function _getFirstFunction ( args ) {
375
411
for ( var i = 0 , len = args . length ; i < len ; ++ i ) {
376
412
if ( _ . isFunction ( args [ i ] ) ) {
0 commit comments