Skip to content

Commit

Permalink
fix additional logging
Browse files Browse the repository at this point in the history
  • Loading branch information
root committed Oct 13, 2024
1 parent e60af51 commit 14707d5
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions frontend/js/app/nginx/redirection/form.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,6 @@ module.exports = Mn.View.extend({
let view = this;
let data = this.ui.form.serializeJSON();

console.log(data);
// Manipulate
data.block_exploits = !!data.block_exploits;
data.preserve_path = !!data.preserve_path;
Expand Down Expand Up @@ -186,7 +185,6 @@ module.exports = Mn.View.extend({

method(data)
.then(result => {
console.log(result);
view.model.set(result);

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

0 comments on commit 14707d5

Please sign in to comment.