Skip to content

Commit

Permalink
refactor: bug fix -- lib/engine
Browse files Browse the repository at this point in the history
options.level.show not showing colored `dots` char correctly.
  • Loading branch information
akileez committed Oct 20, 2015
1 parent 7401e6e commit e944b6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/engine.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ function engine () {
var opts = options.level

if (options.level.show && levelStr.length) {
levelStr = levelStr.replace(' ', opts.char[opts.color])
levelStr = levelStr.replace(' ', useColorProvider(opts.char, opts.color))
}
return repeat(levelStr, level)
}
Expand Down

0 comments on commit e944b6d

Please sign in to comment.