Skip to content

Commit

Permalink
fix(logger): fix logger debug scope
Browse files Browse the repository at this point in the history
  • Loading branch information
MM25Zamanian committed Feb 27, 2022
1 parent d8b6bb0 commit e734d21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package/logger/src/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export function createLogger(
debug = true;
} else if (
debugString.indexOf('*') === debugString.length &&
scope.indexOf(debugString.replaceAll('*', '')) !== -1
scope.indexOf(debugString.replaceAll('*', '')) !== 0
) {
debug = true;
}
Expand Down

0 comments on commit e734d21

Please sign in to comment.