Browse Source

Removed Debug Messages

Niklas Meyer 2 years ago
parent
commit
a57e4212ee
2 changed files with 0 additions and 2 deletions
  1. 0 1
      data/web/js/site/mailbox.js
  2. 0 1
      data/web/js/site/user.js

+ 0 - 1
data/web/js/site/mailbox.js

@@ -2053,7 +2053,6 @@ jQuery(function($){
         type: "GET",
         url: "/api/v1/get/syncjobs/all/no_log",
         dataSrc: function(json){
-          console.log(json);
           $.each(json, function (i, item) {
             item.log = '<a href="#syncjobLogModal" data-bs-toggle="modal" data-syncjob-id="' + encodeURIComponent(item.id) + '">' + lang.open_logs + '</a>'
             item.user2 = escapeHtml(item.user2);

+ 0 - 1
data/web/js/site/user.js

@@ -240,7 +240,6 @@ jQuery(function($){
         type: "GET",
         url: '/api/v1/get/syncjobs/' + encodeURIComponent(mailcow_cc_username) + '/no_log',
         dataSrc: function(data){
-          console.log(data);
           $.each(data, function (i, item) {
             item.user1 = escapeHtml(item.user1);
             item.log = '<a href="#syncjobLogModal" data-bs-toggle="modal" data-syncjob-id="' + item.id + '">' + lang.open_logs + '</a>'