Transition tracing (debug)

Enable transition tracing to print transition information to the console, in order to help debug your application. Tracing logs detailed information about each Transition to your console.

To enable tracing, import the [[Trace]] singleton and enable one or more categories.

import {trace} from "@uirouter/core/index";
trace.enable(1, 5); // TRANSITION and VIEWCONFIG
let trace = require("@uirouter/core").trace;
trace.enable("TRANSITION", "VIEWCONFIG");
let trace = window["@uirouter/core"].trace;
trace.enable(); // Trace everything (very verbose)
app.run($trace => $trace.enable());

Index

Classes

Variables