Skip to content

Commit

Permalink
Fixed typo in error message.
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed Oct 19, 2019
1 parent fea867a commit 28339a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/logger/src.ts/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ export class Logger {
setLogLevel(logLevel: LogLevel): void {
let level = LogLevels[logLevel];
if (level == null) {
this.warn("invliad log level - " + logLevel);
this.warn("invalid log level - " + logLevel);
return;
}
LogLevel = level;
Expand Down

0 comments on commit 28339a9

Please sign in to comment.