Remove some logs to complete my testing

This commit is contained in:
Nick Winter 2016-02-02 16:56:08 -08:00
parent 260fd21f4e
commit 14c734cfe8
3 changed files with 3 additions and 6 deletions

View file

@ -52,7 +52,6 @@ module.exports = class CocoClass
# for initting subscriptions
return unless Backbone?.Mediator?
for channel, func of @subscriptions
console.log @nick, 'listening to', channel, 'with', func
func = utils.normalizeFunc(func, @)
Backbone.Mediator.subscribe(channel, func, @)

View file

@ -3,7 +3,7 @@ SuperModel = require 'models/SuperModel'
utils = require 'core/utils'
CocoClass = require 'core/CocoClass'
debugAnalytics = true
debugAnalytics = false
targetInspectJSLevelSlugs = ['cupboards-of-kithgard']
module.exports = class Tracker extends CocoClass
@ -16,7 +16,6 @@ module.exports = class Tracker extends CocoClass
console.error 'Overwrote our Tracker!', window.tracker
window.tracker = @
@isProduction = document.location.href.search('codecombat.com') isnt -1
@isProduction = true
@trackReferrers()
@identify()
@supermodel = new SuperModel()
@ -92,6 +91,7 @@ module.exports = class Tracker extends CocoClass
mixpanel.register(traits)
if @isTeacher() and @segmentLoaded
traits.createdAt = me.get 'dateCreated' # Intercom, at least, wants this
analytics.identify me.id, traits
trackPageView: (includeIntegrations=[]) ->

View file

@ -62,9 +62,7 @@ module.exports = class User extends CocoModel
setRole: (role, force=false) ->
return if me.isAdmin()
oldRole = @get 'role'
console.log 'had role', oldRole, 'new role', role
return if oldRole is role or (oldRole and not force)
console.log 'gonna set it!'
@set 'role', role
@patch()
application.tracker?.updateRole()
@ -135,7 +133,7 @@ module.exports = class User extends CocoModel
@announcesActionAudioGroup = 'all-audio' if me.isAdmin()
application.tracker.identify announcesActionAudioGroup: @announcesActionAudioGroup unless me.isAdmin()
@announcesActionAudioGroup
getHomepageGroup: ->
# return 'control'
# return 'home-with-note'