Skip to content

Commit

Permalink
DiagnosticLogger: Fix typo in defining the console function (#1699)
Browse files Browse the repository at this point in the history
  • Loading branch information
MSNev committed Oct 25, 2021
1 parent ed3511c commit 4213cac
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function _logToConsole(func: string, message: string) {
if (!!theConsole) {
let logFunc = "log";
if (theConsole[func]) {
logFunc = "func";
logFunc = func;
}

if (isFunction(theConsole[logFunc])) {
Expand Down

0 comments on commit 4213cac

Please sign in to comment.