diff --git a/src/web/app/common/scripts/api.ls b/src/web/app/common/scripts/api.ls
index 0656a56168..2292902a91 100644
--- a/src/web/app/common/scripts/api.ls
+++ b/src/web/app/common/scripts/api.ls
@@ -8,8 +8,6 @@ net = riot.observable!
 riot.mixin \net do
 	net: net
 
-log = (riot.mixin \log).log
-
 module.exports = (i, endpoint, data) ->
 	pending++
 
@@ -48,8 +46,6 @@ module.exports = (i, endpoint, data) ->
 			net.trigger \detected-slow-network
 		, 5000ms
 
-		log "API: #{ep}"
-
 		fetch ep, opts
 		.then (res) ->
 			pending--