标签: angularjs logging service
当我以正常方式注入时出现错误 - 所以是否可以在我自己的服务和/或提供商中使用$ log?
答案 0 :(得分:2)
当然。
您确定要正确注射吗?
yourApp.service('myService', ['$log', function ($log) { $log.log('Hi console!'); }]);