Skip to content

Commit

Permalink
[broccoli-eyeglass] Enable verbose mode via DEBUG=eyeglass:results
Browse files Browse the repository at this point in the history
  • Loading branch information
chriseppstein committed Apr 11, 2019
1 parent cda9ee6 commit fd18a12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/broccoli-eyeglass/src/broccoli_sass_compiler.ts
Expand Up @@ -430,7 +430,7 @@ export default class BroccoliSassCompiler extends BroccoliPlugin {
this.fullException = options.fullException || false;
delete options.fullException;

this.verbose = options.verbose || false;
this.verbose = options.verbose || debugGenerator.enabled("broccoli-eyeglass:results") || debugGenerator.enabled("eyeglass:results");
delete options.verbose;

this.renderSync = options.renderSync || false;
Expand Down

0 comments on commit fd18a12

Please sign in to comment.