How to see $log calls in Terminal when running angularjs unit tests with karma?
angular-seed, angularjs, karma-runner
Solution
Got it working! Had I used `console.log` directly it would have worked but now that I am using `$log` I had to patch it in a `beforeEach` (looks like by default it wasn't wired by angularjs):
$provide.value('$log', console);
Problem
In a project based on angular-seed project, I am running unit tests with `./scripts/test.sh --log-level debug` but none of the log messages that I see are coming from my app. How do I get to see them? In my app, I am logging with `$log`.