Skip to content

Commit

Permalink
updated comment
Browse files Browse the repository at this point in the history
  • Loading branch information
orthagonal committed Nov 7, 2016
1 parent 4f83086 commit 57dc5e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -125,7 +125,7 @@ class Logger {
tags = [];
}
if (this.config.exclude) {
// if it's a string and it's in the list of tags then don't log:
// exclude can be either a string or a list of strings:
if (typeof this.config.exclude === 'string') {
if (tags.indexOf(this.config.exclude) > -1) {
return;
Expand Down

0 comments on commit 57dc5e5

Please sign in to comment.