1.2.1 • Published 9 years ago

meanie-angular-log v1.2.1

Weekly downloads
4
License
MIT
Repository
github
Last release
9 years ago

meanie-angular-log

npm version node dependencies github issues codacy

An extended drop in replacement for the built in Angular $log service

Meanie

Installation

You can install this package using npm:

npm install meanie-angular-log --save

Include the script node_modules/meanie-angular-log/release/meanie-angular-log.js in your build process, or add it via a <script> tag to your index.html:

<script src="node_modules/meanie-angular-log/release/meanie-angular-log.js"></script>

Add Log.Service as a dependency for your app.

Usage

This module is a drop-in replacement for the built-in $log service:

angular.module('App.MyModule').controller('MyController', function($log) {
  $log.log('Log');
  $log.info('Info');
  $log.warn('Warning');
  $log.error('Error');
  $log.debug('Debug');
  $log.trace();
  $log.clear();
  $log.dir(obj);
  $log.assert(val, true);
});

Note that due to services not being available in the configuration phase of Angular applications, the $log service cannot be used at that time.

Issues & feature requests

Please report any bugs, issues, suggestions and feature requests in the meanie-angular-log issue tracker.

Contributing

Pull requests are welcome! If you would like to contribute to Meanie, please check out the Meanie contributing guidelines.

Credits

License

(MIT License)

Copyright 2015-2017, Adam Reis

1.2.1

9 years ago

1.2.0

9 years ago

1.1.2

9 years ago

1.1.1

9 years ago

1.1.0

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago

0.3.4

10 years ago

0.3.3

10 years ago

0.3.2

10 years ago

0.3.1

10 years ago

0.3.0

10 years ago

0.2.0

10 years ago

0.1.3

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago