Prints UI-Router Transition trace information to the console.
Disables a trace Category
trace.disable("VIEWCONFIG");
categories to disable. If categories is omitted, all categories are disabled. Also takes strings (category name) or ordinal (category position)
categories
Enables a trace Category
trace.enable("TRANSITION");
categories to enable. If categories is omitted, all categories are enabled. Also takes strings (category name) or ordinal (category position)
Retrieves the enabled stateus of a Category
trace.enabled("VIEWCONFIG"); // true or false
boolean true if the category is enabled
Generated using TypeDoc
Prints UI-Router Transition trace information to the console.