Reduce console.log spam

This commit is contained in:
Bernd Bestel 2019-09-27 14:08:24 +02:00
parent 4aa575e0e8
commit 9ba4585143
No known key found for this signature in database
GPG Key ID: 71BD34C0D4891300
3 changed files with 3 additions and 3 deletions

View File

@ -87,7 +87,7 @@ Grocy.Components.UserfieldsForm.Load = function()
},
function(xhr)
{
console.log(xhr);
console.error(xhr);
}
);
}

View File

@ -330,7 +330,7 @@ $(document).on("click", "#save-description-button", function(e)
},
function(xhr)
{
console.log(xhr);
console.error(xhr);
}
);
});

View File

@ -4,7 +4,7 @@
var jsonData = {};
jsonData.userentity_id = Grocy.EditObjectParentId;
console.log(jsonData);
Grocy.FrontendHelpers.BeginUiBusy("userobject-form");
if (Grocy.EditMode === 'create')