Skip to content

Commit

Permalink
chore: apply hotfix for #136
Browse files Browse the repository at this point in the history
  • Loading branch information
GHMatti authored and GHMatti committed Jun 26, 2020
1 parent 2f0ec45 commit 73a52f7
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions mysql-async.js
Original file line number Diff line number Diff line change
Expand Up @@ -15717,10 +15717,10 @@ function colorize(string, color) {
var OutputDestination;

(function (OutputDestination) {
OutputDestination[OutputDestination["FileAndConsole"] = 'FileAndConsole'] = "FileAndConsole";
OutputDestination[OutputDestination["Console"] = 'Console'] = "Console";
OutputDestination[OutputDestination["File"] = 'File'] = "File";
OutputDestination[OutputDestination["None"] = 'None'] = "None";
OutputDestination[OutputDestination["File"] = 'File'] = "File";
OutputDestination[OutputDestination["Console"] = 'Console'] = "Console";
OutputDestination[OutputDestination["FileAndConsole"] = 'FileAndConsole'] = "FileAndConsole";
})(OutputDestination || (OutputDestination = {}));

const defaultLoggerConfig = {
Expand Down Expand Up @@ -15891,7 +15891,6 @@ class logger_Logger {
};

switch (opts.output) {
default:
case OutputDestination.Console:
logger_writeConsole(msg, opts);
break;
Expand Down

0 comments on commit 73a52f7

Please sign in to comment.