Search code examples
ember.jsember-router

Where did enableLogging go with the new Ember router?


How do you log route transitions with the new router (1.0.0-pre.4+)?


Solution

  • As of 1bf0df4 you can use

    App = Ember.Application.create({
      LOG_TRANSITIONS: true
    });
    

    Note that this is on the Application, not the Router.

    (Thanks to @wildchild in #1673 for the pointer.)