diff --git a/www/js/controllers/wot-controllers.js b/www/js/controllers/wot-controllers.js
index a4d6638da80e2a139fffcb21b1d45569764eea20..b252a9c7ef3ded3722bf09233904299180f2f0ef 100644
--- a/www/js/controllers/wot-controllers.js
+++ b/www/js/controllers/wot-controllers.js
@@ -301,7 +301,9 @@ function WotLookupController($scope, $state, $q, $timeout, $focus, $location, $i
     if (BMA.regexp.PUBKEY_WITH_CHECKSUM.test(text)) {
       console.debug("[wot] Validating pubkey checksum... ");
       var matches = BMA.regexp.PUBKEY_WITH_CHECKSUM.exec(text);
-      //console.log(matches)
+
+      // DEBUG only
+      //console.debug(matches)
 
       pubkey = matches[1];
       var checksum = matches[2];
diff --git a/www/js/entities/ws2pmessage.js b/www/js/entities/ws2pmessage.js
index 52efe155361ed87a206743bd47cc5e3a06dd02fd..3e0af709c2cfed2b20aebea31677f8938c78704c 100644
--- a/www/js/entities/ws2pmessage.js
+++ b/www/js/entities/ws2pmessage.js
@@ -59,7 +59,7 @@ function Ws2pMessage(message) {
 
           // For DEBUG only:
           /*
-          console.log('[http] private {0}, public {1}'.format(
+          console.debug('[http] private {0}, public {1}'.format(
            (that.private && (that.private.useTor ? 'TOR ' : '' ) + (that.private.mode || 'false')) || 'false',
             that.public && ((that.public.useTor ? 'TOR ' : '' ) + (that.public.mode || 'false')) || 'false'
           ), prefix);*/
diff --git a/www/js/services/wallet-services.js b/www/js/services/wallet-services.js
index a323eb1f8b8cafc134963214bf160c17c6def136..4aa82fae1d02eefa7c92c4f65a61e07d8dfb4933 100644
--- a/www/js/services/wallet-services.js
+++ b/www/js/services/wallet-services.js
@@ -942,7 +942,7 @@ angular.module('cesium.wallet.services', ['ngApi', 'ngFileSaver', 'cesium.bma.se
         })
         .catch(function(err) {
           loadPromise = null;
-          console.log('TODO 2', err);
+          console.error('[wallet] Failed to load wallet data', err);
           throw err;
         });
     },