Skip to content

Commit 73a52f7

Browse files
GHMattiGHMatti
authored andcommitted
chore: apply hotfix for #136
1 parent 2f0ec45 commit 73a52f7

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

mysql-async.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15717,10 +15717,10 @@ function colorize(string, color) {
1571715717
var OutputDestination;
1571815718

1571915719
(function (OutputDestination) {
15720-
OutputDestination[OutputDestination["FileAndConsole"] = 'FileAndConsole'] = "FileAndConsole";
15721-
OutputDestination[OutputDestination["Console"] = 'Console'] = "Console";
15722-
OutputDestination[OutputDestination["File"] = 'File'] = "File";
1572315720
OutputDestination[OutputDestination["None"] = 'None'] = "None";
15721+
OutputDestination[OutputDestination["File"] = 'File'] = "File";
15722+
OutputDestination[OutputDestination["Console"] = 'Console'] = "Console";
15723+
OutputDestination[OutputDestination["FileAndConsole"] = 'FileAndConsole'] = "FileAndConsole";
1572415724
})(OutputDestination || (OutputDestination = {}));
1572515725

1572615726
const defaultLoggerConfig = {
@@ -15891,7 +15891,6 @@ class logger_Logger {
1589115891
};
1589215892

1589315893
switch (opts.output) {
15894-
default:
1589515894
case OutputDestination.Console:
1589615895
logger_writeConsole(msg, opts);
1589715896
break;

0 commit comments

Comments
 (0)