# Debug from console?

**URL:** https://discuss.emberjs.com/t/debug-from-console/8971
**Category:** Uncategorized
**Created:** [October 16, 2015, 10:51pm UTC](https://discuss.emberjs.com/t/debug-from-console/8971 "2015-10-16T22:51:06Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![brian\_ally](https://sea1.discourse-cdn.com/flex019/user_avatar/discuss.emberjs.com/brian_ally/32/10571_2.png) [@brian\_ally](https://discuss.emberjs.com/u/brian_ally)
#### Post date: [October 16, 2015, 10:51pm UTC](https://discuss.emberjs.com/t/debug-from-console/8971/1 "2015-10-16T22:51:06Z")

</div>

I’m trying to solve an addon install problem. I see lots of debug() calls in the source but am unsure how to activate them. Specifically, when running `ember g blueprint-name`. Is possible? I don’t see any flags for it. `ember g --verbose blueprint-name` has no obvious effect.

I am **not** looking for anything related to Ember Inspector, or Ember.Logger, as neither of those will help in this situation.

---

<div class="post-metadata">

### Author: ![brian\_ally](https://sea1.discourse-cdn.com/flex019/user_avatar/discuss.emberjs.com/brian_ally/32/10571_2.png) [@brian\_ally](https://discuss.emberjs.com/u/brian_ally)
#### Post date: [October 19, 2015, 5:38pm UTC](https://discuss.emberjs.com/t/debug-from-console/8971/2 "2015-10-19T17:38:43Z")

</div>

For those of you playing along:

```
DEBUG=* ember install some-addon > install.log 2>&1
DEBUG=* ember build > build.log 2>&1

```

To zero in on a particular module, rather than using a wildcard, open the module up and look for the require line, eg:

```
var debug = require('debug')('ember-cli:blueprint');

```

In this case, you’d do:

```
DEBUG=ember-cli:blueprint ember install some-addon > my-blueprint.log 2>&1

```
