Function
debug (message) public
Module:
@ember/debug
Defined in packages/@ember/debug/index.ts:173
import { debug } from '@ember/debug'; |
- message
- String
- A debug message to display.
Display a debug notice.
Calls to this function are not invoked in production builds.
1 2 3 |
import { debug } from '@ember/debug'; debug('I\'m a debug notice!'); |