Skip to content

Commit 14707d5

Browse files
author
root
committed
fix additional logging
1 parent e60af51 commit 14707d5

File tree

1 file changed

+0
-3
lines changed
  • frontend/js/app/nginx/redirection

1 file changed

+0
-3
lines changed

frontend/js/app/nginx/redirection/form.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,6 @@ module.exports = Mn.View.extend({
127127
let view = this;
128128
let data = this.ui.form.serializeJSON();
129129

130-
console.log(data);
131130
// Manipulate
132131
data.block_exploits = !!data.block_exploits;
133132
data.preserve_path = !!data.preserve_path;
@@ -186,7 +185,6 @@ module.exports = Mn.View.extend({
186185

187186
method(data)
188187
.then(result => {
189-
console.log(result);
190188
view.model.set(result);
191189

192190
App.UI.closeModal(function () {
@@ -197,7 +195,6 @@ module.exports = Mn.View.extend({
197195
})
198196
.catch(err => {
199197
let more_info = '';
200-
console.log(err);
201198
if(err.code === 500 && err.debug){
202199
try{
203200
more_info = JSON.parse(err.debug).debug.stack.join("\n");

0 commit comments

Comments
 (0)