Remove log statement
diff --git a/src/couch_stats_httpd.erl b/src/couch_stats_httpd.erl
index 3b1db3a..ad42930 100644
--- a/src/couch_stats_httpd.erl
+++ b/src/couch_stats_httpd.erl
@@ -18,7 +18,6 @@
 handle_stats_req(#httpd{method='GET', path_parts=[_]}=Req) ->
     Stats0 = couch_stats:fetch(),
     Stats = transform_stats(Stats0),
-    couch_log:notice("poo ~p", [Stats0]),
     Nested = nest(Stats),
     EJSON = to_ejson(Nested),
     couch_httpd:send_json(Req, EJSON).