RIFT-14910: Delete logging filter
[osm/UI.git] / skyquake / plugins / logging / src / loggingSource.js
index bf2f06a..2810ac8 100644 (file)
@@ -84,23 +84,23 @@ export default {
               }
             }))
           }
-          // if(nulledCategories.length > 0) {
-          //   remove = $.ajax({
-          //     // url: apiUrl('api/config/default-severity'),
-          //     url: apiUrl('api/config/default-syslog-severity/' + nulledCategories.join(',')),
-          //     type: 'DELETE',
-          //     beforeSend: Utils.addAuthorizationStub,
-          //     success: function(data) {
-          //       resolve(data);
-          //     },
-          //     error: function(error) {
-          //       console.log("There was an error updating the logging config data",
-          //         error);
-          //       reject(error);
-          //     }
-          //   });
-          //   promises.push(remove);
-          // }
+          if(nulledCategories.length > 0) {
+            remove = $.ajax({
+              // url: apiUrl('api/config/default-severity'),
+              url: apiUrl('api/config/default-syslog-severity/' + nulledCategories.join(',')),
+              type: 'DELETE',
+              beforeSend: Utils.addAuthorizationStub,
+              success: function(data) {
+                resolve(data);
+              },
+              error: function(error) {
+                console.log("There was an error updating the logging config data",
+                  error);
+                reject(error);
+              }
+            });
+            promises.push(remove);
+          }
           Promise.all(promises).then(function(data) {
             return $.ajax({
                 url: apiUrl('api/aggregate'),