View source Improve this doc

$log

service in module ng

Description

Simple service for logging. Default implementation safely writes the message into the browser's console (if present).

The main purpose of this service is to simplify debugging and troubleshooting.

The default is to log debug messages. You can use ng.$logProvider#debugEnabled to change this.

Dependencies

  • $window

Methods

  • debug()

Write a debug message

  • error()

Write an error message

  • info()

Write an information message

  • log()

Write a log message

  • warn()

Write a warning message

Example

Source

  1.  
  1.  

Demo