diff --git a/web/pgadmin/tools/sqleditor/templates/sqleditor/js/sqleditor.js b/web/pgadmin/tools/sqleditor/templates/sqleditor/js/sqleditor.js
index 48b304f..2767b91 100644
--- a/web/pgadmin/tools/sqleditor/templates/sqleditor/js/sqleditor.js
+++ b/web/pgadmin/tools/sqleditor/templates/sqleditor/js/sqleditor.js
@@ -1768,10 +1768,7 @@ define(
                     // Remove new rows from grid data if any
                     _.each(data, function(d) {
                       if(_.indexOf(deleted_keys, d.__temp_PK) > -1) {
-                        console.log(data);
                         data.splice(idx, 1);
-                        console.log(data);
-
                       }
                       idx++;
                     });
@@ -1877,10 +1874,7 @@ define(
                       // so that when we remove it does not affect index
                       rows = rows.reverse();
                       rows.forEach(function(idx) {
-                        console.log('idx: ' + idx);
-                        console.log(data);
                         data.splice(idx, 1);
-                        console.log(data);
                       });
                       grid.setData(data, true);
                       grid.setSelectedRows([]);
