Switch to side-by-side view

--- a/controllers/mysql.js
+++ b/controllers/mysql.js
@@ -121,7 +121,6 @@
 				callback(false,err);
 			}else{
 				var sqlQuery2 = "INSERT INTO ruleslist ( description, parameter, conditionValue, controlValue, threshold, notifyType, emailTo, notificationType, hostname, port, path, method, token) VALUES ('"+body.description+"','"+body.parameter+"','"+body.conditionValue+"','"+body.controlValue+"','"+body.threshold+"','"+body.notifyType+"','"+destinations+"','"+body.notificationType+"','"+body.hostname+"','"+body.port+"','"+body.path+"','"+body.method+"','"+res[0].token+"')";
-				console.log(sqlQuery2);
 				handlerDB(sqlQuery2, function(err, result){
 					if (err){ 
 						callback(false,err);
@@ -471,8 +470,6 @@
 Update Rule
 */
 module.exports.updateRule= function(data, callback){
-	console.log("DATA: " + JSON.stringify(data));
-	console.log("data.emailTo: " + data.emailTo);
 	var destinations ="";
 	
 	for(i = 0; i < data.emailTo.length; i++){