diff --git a/public/javascripts/app/models/stream.js b/public/javascripts/app/models/stream.js
index 65cd83e4e71f790f683d7660c1d2ccfe7b81133f..edf9a49cbd46c2c9e55e4f1c134eb215b64e9095 100644
--- a/public/javascripts/app/models/stream.js
+++ b/public/javascripts/app/models/stream.js
@@ -10,7 +10,7 @@ app.models.Stream = Backbone.Collection.extend({
   _fetching : false,
 
   fetch: function() {
-    if(this._fetching) { console.log('no sir'); return false; }
+    if(this._fetching) { return false; }
     var self = this
 
     // we're fetching the collection... there is probably a better way to do this