trace | @uirouter/angularjs
Options
Menu

Module trace

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.

ES6

import {trace} from "ui-router-ng2"; // or "angular-ui-router"
trace.enable(1, 5); // TRANSITION and VIEWCONFIG

CJS

let trace = require("angular-ui-router").trace; // or "ui-router-ng2"
trace.enable("TRANSITION", "VIEWCONFIG");

Globals

let trace = window["angular-ui-router"].trace; // or "ui-router-ng2"
trace.enable(); // Trace everything (very verbose)

Angular 1:

app.run($trace => $trace.enable());
module

trace

Index

Enumerations

Classes

Variables

Variables

trace: Trace = new Trace()

The Trace singleton

The Trace singleton

Example:

import {trace} from "angular-ui-router";
trace.enable(1, 5);

Generated using TypeDoc