mobile rc: add DROPPED to notifications blacklist

This commit is contained in:
Oleg Kalachev
2018-02-21 21:48:52 +03:00
parent dc501bb2e6
commit d1c5e847da

View File

@@ -65,7 +65,7 @@ new ROSLIB.Topic({
name: '/rosout_agg',
messageType: 'rosgraph_msgs/Log'
}).subscribe(function(message) {
var BLACKLIST = ['CMD: ', 'PR: '];
var BLACKLIST = ['CMD: ', 'PR: ', 'DROPPED'];
if(message.level >= 4) {
if (BLACKLIST.some(function(e) {
return message.msg.indexOf(e) != -1;