removed debug logging

This commit is contained in:
Synox 2017-03-22 23:12:58 +01:00
parent 6e998765c6
commit 468cb253e9

View file

@ -83,10 +83,8 @@ app.controller('MailboxController', ["$interval", "$http", "$log", function ($in
};
self.loadEmailsAsync = function (username) {
$log.debug("updating mails for ", username);
$http.get(backend_url, {params: {username: username}})
.then(function successCallback(response) {
$log.debug("received mails for ", username);
if (response.data.mails) {
self.error = null;
self.mails = response.data.mails;