From 9392100d3bf31201cfe4b56622136331dc7d6602 Mon Sep 17 00:00:00 2001
From: Scott Erickson <sderickson@gmail.com>
Date: Wed, 22 Oct 2014 08:17:30 -0700
Subject: [PATCH] Removed some logs.

---
 app/lib/surface/Mark.coffee | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/app/lib/surface/Mark.coffee b/app/lib/surface/Mark.coffee
index 0b52976af..84362689c 100644
--- a/app/lib/surface/Mark.coffee
+++ b/app/lib/surface/Mark.coffee
@@ -237,14 +237,12 @@ module.exports = class Mark extends CocoClass
     @sprite.scaleY = h / (@layer.resolutionFactor * DEBUG_SIZE)
 
   buildSprite: ->
-    console.log 'build sprite?'
     if _.isString @thangType
       thangType = markThangTypes[@thangType]
       return @loadThangType() if not thangType
       @thangType = thangType
 
     return @listenToOnce(@thangType, 'sync', @onLoadedThangType) if not @thangType.loaded
-    console.log 'loaded, so go ahead!'
     Lank = require './Lank'
     # don't bother with making these render async for now, but maybe later for fun and more complexity of code
     markLank = new Lank @thangType
@@ -252,8 +250,7 @@ module.exports = class Mark extends CocoClass
     @sprite = markLank.sprite
     @markLank = markLank
     @listenTo @markLank, 'new-sprite', (@sprite) ->
-    console.log 'oh yes, all done', markLank, @markLank
-
+    
   loadThangType: ->
     name = @thangType
     @thangType = new ThangType()
@@ -263,7 +260,6 @@ module.exports = class Mark extends CocoClass
     markThangTypes[name] = @thangType
 
   onLoadedThangType: ->
-    console.log 'on loaded thang type...', @name
     @build()
     @update() if @markLank
     @toggle(@toggleTo) if @toggleTo?