@storm-software/workspace-tools 1.197.0 → 1.198.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/README.md +1 -1
- package/index.js +14 -21
- package/meta.json +52 -52
- package/package.json +1 -1
- package/src/base/base-executor.js +14 -21
- package/src/base/base-generator.js +14 -21
- package/src/base/index.js +14 -21
- package/src/executors/cargo-build/executor.js +14 -21
- package/src/executors/cargo-check/executor.js +14 -21
- package/src/executors/cargo-clippy/executor.js +14 -21
- package/src/executors/cargo-doc/executor.js +14 -21
- package/src/executors/cargo-format/executor.js +14 -21
- package/src/executors/clean-package/executor.js +14 -21
- package/src/executors/rolldown/executor.js +14 -21
- package/src/executors/rollup/executor.js +14 -21
- package/src/executors/size-limit/executor.js +14 -21
- package/src/executors/tsup/executor.js +14 -21
- package/src/executors/tsup-browser/executor.js +14 -21
- package/src/executors/tsup-neutral/executor.js +14 -21
- package/src/executors/tsup-node/executor.js +14 -21
- package/src/executors/typia/executor.js +14 -21
- package/src/executors/unbuild/executor.js +14 -21
- package/src/generators/browser-library/generator.js +14 -21
- package/src/generators/config-schema/generator.js +14 -21
- package/src/generators/neutral-library/generator.js +14 -21
- package/src/generators/node-library/generator.js +14 -21
- package/src/generators/preset/generator.js +14 -21
- package/src/generators/release-version/generator.js +14 -21
- package/src/utils/index.js +14 -21
|
@@ -68875,10 +68875,9 @@ var init_logger = __esm({
|
|
|
68875
68875
|
if (typeof logLevel === "number" && LogLevel.FATAL >= logLevel || typeof logLevel === "string" && LogLevel.FATAL >= getLogLevel(logLevel)) {
|
|
68876
68876
|
return (message) => {
|
|
68877
68877
|
console.error(
|
|
68878
|
-
|
|
68879
|
-
${_chalk.bold.hex(colors.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.fatal ?? "#7d1a1a").whiteBright(
|
|
68878
|
+
`${_chalk.bold.hex(colors.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.fatal ?? "#7d1a1a").whiteBright(
|
|
68880
68879
|
" \u{1F480} Fatal "
|
|
68881
|
-
)} ${_chalk.hex(colors.danger ?? "#f85149")(formatLogMessage(message))}
|
|
68880
|
+
)} ${_chalk.hex(colors.danger ?? "#f85149")(formatLogMessage(message))}\r
|
|
68882
68881
|
`
|
|
68883
68882
|
);
|
|
68884
68883
|
};
|
|
@@ -68886,10 +68885,9 @@ ${_chalk.bold.hex(colors.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.f
|
|
|
68886
68885
|
if (typeof logLevel === "number" && LogLevel.ERROR >= logLevel || typeof logLevel === "string" && LogLevel.ERROR >= getLogLevel(logLevel)) {
|
|
68887
68886
|
return (message) => {
|
|
68888
68887
|
console.error(
|
|
68889
|
-
|
|
68890
|
-
${_chalk.bold.hex(colors.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.danger ?? "#f85149").whiteBright(
|
|
68888
|
+
`${_chalk.bold.hex(colors.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.danger ?? "#f85149").whiteBright(
|
|
68891
68889
|
" \u2718 Error "
|
|
68892
|
-
)} ${_chalk.hex(colors.danger ?? "#f85149")(formatLogMessage(message))}
|
|
68890
|
+
)} ${_chalk.hex(colors.danger ?? "#f85149")(formatLogMessage(message))}\r
|
|
68893
68891
|
`
|
|
68894
68892
|
);
|
|
68895
68893
|
};
|
|
@@ -68897,10 +68895,9 @@ ${_chalk.bold.hex(colors.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.d
|
|
|
68897
68895
|
if (typeof logLevel === "number" && LogLevel.WARN >= logLevel || typeof logLevel === "string" && LogLevel.WARN >= getLogLevel(logLevel)) {
|
|
68898
68896
|
return (message) => {
|
|
68899
68897
|
console.warn(
|
|
68900
|
-
|
|
68901
|
-
${_chalk.bold.hex(colors.warning ?? "#e3b341")(">")} ${_chalk.bold.bgHex(colors.warning ?? "#e3b341").whiteBright(
|
|
68898
|
+
`${_chalk.bold.hex(colors.warning ?? "#e3b341")(">")} ${_chalk.bold.bgHex(colors.warning ?? "#e3b341").whiteBright(
|
|
68902
68899
|
" \u26A0 Warn "
|
|
68903
|
-
)} ${_chalk.hex(colors.warning ?? "#e3b341")(formatLogMessage(message))}
|
|
68900
|
+
)} ${_chalk.hex(colors.warning ?? "#e3b341")(formatLogMessage(message))}\r
|
|
68904
68901
|
`
|
|
68905
68902
|
);
|
|
68906
68903
|
};
|
|
@@ -68908,10 +68905,9 @@ ${_chalk.bold.hex(colors.warning ?? "#e3b341")(">")} ${_chalk.bold.bgHex(colors.
|
|
|
68908
68905
|
if (typeof logLevel === "number" && LogLevel.SUCCESS >= logLevel || typeof logLevel === "string" && LogLevel.SUCCESS >= getLogLevel(logLevel)) {
|
|
68909
68906
|
return (message) => {
|
|
68910
68907
|
console.info(
|
|
68911
|
-
|
|
68912
|
-
${_chalk.bold.hex(colors.success ?? "#56d364")(">")} ${_chalk.bold.bgHex(colors.success ?? "#56d364").whiteBright(
|
|
68908
|
+
`${_chalk.bold.hex(colors.success ?? "#56d364")(">")} ${_chalk.bold.bgHex(colors.success ?? "#56d364").whiteBright(
|
|
68913
68909
|
" \u2713 Success "
|
|
68914
|
-
)} ${_chalk.hex(colors.success ?? "#56d364")(formatLogMessage(message))}
|
|
68910
|
+
)} ${_chalk.hex(colors.success ?? "#56d364")(formatLogMessage(message))}\r
|
|
68915
68911
|
`
|
|
68916
68912
|
);
|
|
68917
68913
|
};
|
|
@@ -68919,10 +68915,9 @@ ${_chalk.bold.hex(colors.success ?? "#56d364")(">")} ${_chalk.bold.bgHex(colors.
|
|
|
68919
68915
|
if (typeof logLevel === "number" && LogLevel.INFO >= logLevel || typeof logLevel === "string" && LogLevel.INFO >= getLogLevel(logLevel)) {
|
|
68920
68916
|
return (message) => {
|
|
68921
68917
|
console.info(
|
|
68922
|
-
|
|
68923
|
-
${_chalk.bold.hex(colors.info ?? "#58a6ff")(">")} ${_chalk.bold.bgHex(colors.info ?? "#58a6ff").whiteBright(
|
|
68918
|
+
`${_chalk.bold.hex(colors.info ?? "#58a6ff")(">")} ${_chalk.bold.bgHex(colors.info ?? "#58a6ff").whiteBright(
|
|
68924
68919
|
" \u2139 Info "
|
|
68925
|
-
)} ${_chalk.hex(colors.info ?? "#58a6ff")(formatLogMessage(message))}
|
|
68920
|
+
)} ${_chalk.hex(colors.info ?? "#58a6ff")(formatLogMessage(message))}\r
|
|
68926
68921
|
`
|
|
68927
68922
|
);
|
|
68928
68923
|
};
|
|
@@ -68930,20 +68925,18 @@ ${_chalk.bold.hex(colors.info ?? "#58a6ff")(">")} ${_chalk.bold.bgHex(colors.inf
|
|
|
68930
68925
|
if (typeof logLevel === "number" && LogLevel.DEBUG >= logLevel || typeof logLevel === "string" && LogLevel.DEBUG >= getLogLevel(logLevel)) {
|
|
68931
68926
|
return (message) => {
|
|
68932
68927
|
console.debug(
|
|
68933
|
-
|
|
68934
|
-
${_chalk.bold.hex(colors.brand ?? "#1fb2a6")(">")} ${_chalk.bold.bgHex(colors.brand ?? "#1fb2a6").whiteBright(
|
|
68928
|
+
`${_chalk.bold.hex(colors.brand ?? "#1fb2a6")(">")} ${_chalk.bold.bgHex(colors.brand ?? "#1fb2a6").whiteBright(
|
|
68935
68929
|
" \u{1F6E0} Debug "
|
|
68936
|
-
)} ${_chalk.hex(colors.brand ?? "#1fb2a6")(formatLogMessage(message))}
|
|
68930
|
+
)} ${_chalk.hex(colors.brand ?? "#1fb2a6")(formatLogMessage(message))}\r
|
|
68937
68931
|
`
|
|
68938
68932
|
);
|
|
68939
68933
|
};
|
|
68940
68934
|
}
|
|
68941
68935
|
return (message) => {
|
|
68942
68936
|
console.log(
|
|
68943
|
-
|
|
68944
|
-
${_chalk.bold.hex(colors.brand ?? "#1fb2a6")(">")} ${_chalk.bold.bgHex(colors.brand ?? "#1fb2a6").whiteBright(
|
|
68937
|
+
`${_chalk.bold.hex(colors.brand ?? "#1fb2a6")(">")} ${_chalk.bold.bgHex(colors.brand ?? "#1fb2a6").whiteBright(
|
|
68945
68938
|
" \u2709 System "
|
|
68946
|
-
)} ${_chalk.hex(colors.brand ?? "#1fb2a6")(formatLogMessage(message))}
|
|
68939
|
+
)} ${_chalk.hex(colors.brand ?? "#1fb2a6")(formatLogMessage(message))}\r
|
|
68947
68940
|
`
|
|
68948
68941
|
);
|
|
68949
68942
|
};
|
|
@@ -66554,10 +66554,9 @@ var init_logger = __esm({
|
|
|
66554
66554
|
if (typeof logLevel === "number" && LogLevel.FATAL >= logLevel || typeof logLevel === "string" && LogLevel.FATAL >= getLogLevel(logLevel)) {
|
|
66555
66555
|
return (message) => {
|
|
66556
66556
|
console.error(
|
|
66557
|
-
|
|
66558
|
-
${_chalk.bold.hex(colors.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.fatal ?? "#7d1a1a").whiteBright(
|
|
66557
|
+
`${_chalk.bold.hex(colors.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.fatal ?? "#7d1a1a").whiteBright(
|
|
66559
66558
|
" \u{1F480} Fatal "
|
|
66560
|
-
)} ${_chalk.hex(colors.danger ?? "#f85149")(formatLogMessage(message))}
|
|
66559
|
+
)} ${_chalk.hex(colors.danger ?? "#f85149")(formatLogMessage(message))}\r
|
|
66561
66560
|
`
|
|
66562
66561
|
);
|
|
66563
66562
|
};
|
|
@@ -66565,10 +66564,9 @@ ${_chalk.bold.hex(colors.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.f
|
|
|
66565
66564
|
if (typeof logLevel === "number" && LogLevel.ERROR >= logLevel || typeof logLevel === "string" && LogLevel.ERROR >= getLogLevel(logLevel)) {
|
|
66566
66565
|
return (message) => {
|
|
66567
66566
|
console.error(
|
|
66568
|
-
|
|
66569
|
-
${_chalk.bold.hex(colors.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.danger ?? "#f85149").whiteBright(
|
|
66567
|
+
`${_chalk.bold.hex(colors.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.danger ?? "#f85149").whiteBright(
|
|
66570
66568
|
" \u2718 Error "
|
|
66571
|
-
)} ${_chalk.hex(colors.danger ?? "#f85149")(formatLogMessage(message))}
|
|
66569
|
+
)} ${_chalk.hex(colors.danger ?? "#f85149")(formatLogMessage(message))}\r
|
|
66572
66570
|
`
|
|
66573
66571
|
);
|
|
66574
66572
|
};
|
|
@@ -66576,10 +66574,9 @@ ${_chalk.bold.hex(colors.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.d
|
|
|
66576
66574
|
if (typeof logLevel === "number" && LogLevel.WARN >= logLevel || typeof logLevel === "string" && LogLevel.WARN >= getLogLevel(logLevel)) {
|
|
66577
66575
|
return (message) => {
|
|
66578
66576
|
console.warn(
|
|
66579
|
-
|
|
66580
|
-
${_chalk.bold.hex(colors.warning ?? "#e3b341")(">")} ${_chalk.bold.bgHex(colors.warning ?? "#e3b341").whiteBright(
|
|
66577
|
+
`${_chalk.bold.hex(colors.warning ?? "#e3b341")(">")} ${_chalk.bold.bgHex(colors.warning ?? "#e3b341").whiteBright(
|
|
66581
66578
|
" \u26A0 Warn "
|
|
66582
|
-
)} ${_chalk.hex(colors.warning ?? "#e3b341")(formatLogMessage(message))}
|
|
66579
|
+
)} ${_chalk.hex(colors.warning ?? "#e3b341")(formatLogMessage(message))}\r
|
|
66583
66580
|
`
|
|
66584
66581
|
);
|
|
66585
66582
|
};
|
|
@@ -66587,10 +66584,9 @@ ${_chalk.bold.hex(colors.warning ?? "#e3b341")(">")} ${_chalk.bold.bgHex(colors.
|
|
|
66587
66584
|
if (typeof logLevel === "number" && LogLevel.SUCCESS >= logLevel || typeof logLevel === "string" && LogLevel.SUCCESS >= getLogLevel(logLevel)) {
|
|
66588
66585
|
return (message) => {
|
|
66589
66586
|
console.info(
|
|
66590
|
-
|
|
66591
|
-
${_chalk.bold.hex(colors.success ?? "#56d364")(">")} ${_chalk.bold.bgHex(colors.success ?? "#56d364").whiteBright(
|
|
66587
|
+
`${_chalk.bold.hex(colors.success ?? "#56d364")(">")} ${_chalk.bold.bgHex(colors.success ?? "#56d364").whiteBright(
|
|
66592
66588
|
" \u2713 Success "
|
|
66593
|
-
)} ${_chalk.hex(colors.success ?? "#56d364")(formatLogMessage(message))}
|
|
66589
|
+
)} ${_chalk.hex(colors.success ?? "#56d364")(formatLogMessage(message))}\r
|
|
66594
66590
|
`
|
|
66595
66591
|
);
|
|
66596
66592
|
};
|
|
@@ -66598,10 +66594,9 @@ ${_chalk.bold.hex(colors.success ?? "#56d364")(">")} ${_chalk.bold.bgHex(colors.
|
|
|
66598
66594
|
if (typeof logLevel === "number" && LogLevel.INFO >= logLevel || typeof logLevel === "string" && LogLevel.INFO >= getLogLevel(logLevel)) {
|
|
66599
66595
|
return (message) => {
|
|
66600
66596
|
console.info(
|
|
66601
|
-
|
|
66602
|
-
${_chalk.bold.hex(colors.info ?? "#58a6ff")(">")} ${_chalk.bold.bgHex(colors.info ?? "#58a6ff").whiteBright(
|
|
66597
|
+
`${_chalk.bold.hex(colors.info ?? "#58a6ff")(">")} ${_chalk.bold.bgHex(colors.info ?? "#58a6ff").whiteBright(
|
|
66603
66598
|
" \u2139 Info "
|
|
66604
|
-
)} ${_chalk.hex(colors.info ?? "#58a6ff")(formatLogMessage(message))}
|
|
66599
|
+
)} ${_chalk.hex(colors.info ?? "#58a6ff")(formatLogMessage(message))}\r
|
|
66605
66600
|
`
|
|
66606
66601
|
);
|
|
66607
66602
|
};
|
|
@@ -66609,20 +66604,18 @@ ${_chalk.bold.hex(colors.info ?? "#58a6ff")(">")} ${_chalk.bold.bgHex(colors.inf
|
|
|
66609
66604
|
if (typeof logLevel === "number" && LogLevel.DEBUG >= logLevel || typeof logLevel === "string" && LogLevel.DEBUG >= getLogLevel(logLevel)) {
|
|
66610
66605
|
return (message) => {
|
|
66611
66606
|
console.debug(
|
|
66612
|
-
|
|
66613
|
-
${_chalk.bold.hex(colors.brand ?? "#1fb2a6")(">")} ${_chalk.bold.bgHex(colors.brand ?? "#1fb2a6").whiteBright(
|
|
66607
|
+
`${_chalk.bold.hex(colors.brand ?? "#1fb2a6")(">")} ${_chalk.bold.bgHex(colors.brand ?? "#1fb2a6").whiteBright(
|
|
66614
66608
|
" \u{1F6E0} Debug "
|
|
66615
|
-
)} ${_chalk.hex(colors.brand ?? "#1fb2a6")(formatLogMessage(message))}
|
|
66609
|
+
)} ${_chalk.hex(colors.brand ?? "#1fb2a6")(formatLogMessage(message))}\r
|
|
66616
66610
|
`
|
|
66617
66611
|
);
|
|
66618
66612
|
};
|
|
66619
66613
|
}
|
|
66620
66614
|
return (message) => {
|
|
66621
66615
|
console.log(
|
|
66622
|
-
|
|
66623
|
-
${_chalk.bold.hex(colors.brand ?? "#1fb2a6")(">")} ${_chalk.bold.bgHex(colors.brand ?? "#1fb2a6").whiteBright(
|
|
66616
|
+
`${_chalk.bold.hex(colors.brand ?? "#1fb2a6")(">")} ${_chalk.bold.bgHex(colors.brand ?? "#1fb2a6").whiteBright(
|
|
66624
66617
|
" \u2709 System "
|
|
66625
|
-
)} ${_chalk.hex(colors.brand ?? "#1fb2a6")(formatLogMessage(message))}
|
|
66618
|
+
)} ${_chalk.hex(colors.brand ?? "#1fb2a6")(formatLogMessage(message))}\r
|
|
66626
66619
|
`
|
|
66627
66620
|
);
|
|
66628
66621
|
};
|
|
@@ -93468,10 +93468,9 @@ var init_logger = __esm({
|
|
|
93468
93468
|
if (typeof logLevel === "number" && LogLevel.FATAL >= logLevel || typeof logLevel === "string" && LogLevel.FATAL >= getLogLevel(logLevel)) {
|
|
93469
93469
|
return (message) => {
|
|
93470
93470
|
console.error(
|
|
93471
|
-
|
|
93472
|
-
${_chalk.bold.hex(colors2.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors2.fatal ?? "#7d1a1a").whiteBright(
|
|
93471
|
+
`${_chalk.bold.hex(colors2.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors2.fatal ?? "#7d1a1a").whiteBright(
|
|
93473
93472
|
" \u{1F480} Fatal "
|
|
93474
|
-
)} ${_chalk.hex(colors2.danger ?? "#f85149")(formatLogMessage(message))}
|
|
93473
|
+
)} ${_chalk.hex(colors2.danger ?? "#f85149")(formatLogMessage(message))}\r
|
|
93475
93474
|
`
|
|
93476
93475
|
);
|
|
93477
93476
|
};
|
|
@@ -93479,10 +93478,9 @@ ${_chalk.bold.hex(colors2.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors2
|
|
|
93479
93478
|
if (typeof logLevel === "number" && LogLevel.ERROR >= logLevel || typeof logLevel === "string" && LogLevel.ERROR >= getLogLevel(logLevel)) {
|
|
93480
93479
|
return (message) => {
|
|
93481
93480
|
console.error(
|
|
93482
|
-
|
|
93483
|
-
${_chalk.bold.hex(colors2.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors2.danger ?? "#f85149").whiteBright(
|
|
93481
|
+
`${_chalk.bold.hex(colors2.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors2.danger ?? "#f85149").whiteBright(
|
|
93484
93482
|
" \u2718 Error "
|
|
93485
|
-
)} ${_chalk.hex(colors2.danger ?? "#f85149")(formatLogMessage(message))}
|
|
93483
|
+
)} ${_chalk.hex(colors2.danger ?? "#f85149")(formatLogMessage(message))}\r
|
|
93486
93484
|
`
|
|
93487
93485
|
);
|
|
93488
93486
|
};
|
|
@@ -93490,10 +93488,9 @@ ${_chalk.bold.hex(colors2.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors2
|
|
|
93490
93488
|
if (typeof logLevel === "number" && LogLevel.WARN >= logLevel || typeof logLevel === "string" && LogLevel.WARN >= getLogLevel(logLevel)) {
|
|
93491
93489
|
return (message) => {
|
|
93492
93490
|
console.warn(
|
|
93493
|
-
|
|
93494
|
-
${_chalk.bold.hex(colors2.warning ?? "#e3b341")(">")} ${_chalk.bold.bgHex(colors2.warning ?? "#e3b341").whiteBright(
|
|
93491
|
+
`${_chalk.bold.hex(colors2.warning ?? "#e3b341")(">")} ${_chalk.bold.bgHex(colors2.warning ?? "#e3b341").whiteBright(
|
|
93495
93492
|
" \u26A0 Warn "
|
|
93496
|
-
)} ${_chalk.hex(colors2.warning ?? "#e3b341")(formatLogMessage(message))}
|
|
93493
|
+
)} ${_chalk.hex(colors2.warning ?? "#e3b341")(formatLogMessage(message))}\r
|
|
93497
93494
|
`
|
|
93498
93495
|
);
|
|
93499
93496
|
};
|
|
@@ -93501,10 +93498,9 @@ ${_chalk.bold.hex(colors2.warning ?? "#e3b341")(">")} ${_chalk.bold.bgHex(colors
|
|
|
93501
93498
|
if (typeof logLevel === "number" && LogLevel.SUCCESS >= logLevel || typeof logLevel === "string" && LogLevel.SUCCESS >= getLogLevel(logLevel)) {
|
|
93502
93499
|
return (message) => {
|
|
93503
93500
|
console.info(
|
|
93504
|
-
|
|
93505
|
-
${_chalk.bold.hex(colors2.success ?? "#56d364")(">")} ${_chalk.bold.bgHex(colors2.success ?? "#56d364").whiteBright(
|
|
93501
|
+
`${_chalk.bold.hex(colors2.success ?? "#56d364")(">")} ${_chalk.bold.bgHex(colors2.success ?? "#56d364").whiteBright(
|
|
93506
93502
|
" \u2713 Success "
|
|
93507
|
-
)} ${_chalk.hex(colors2.success ?? "#56d364")(formatLogMessage(message))}
|
|
93503
|
+
)} ${_chalk.hex(colors2.success ?? "#56d364")(formatLogMessage(message))}\r
|
|
93508
93504
|
`
|
|
93509
93505
|
);
|
|
93510
93506
|
};
|
|
@@ -93512,10 +93508,9 @@ ${_chalk.bold.hex(colors2.success ?? "#56d364")(">")} ${_chalk.bold.bgHex(colors
|
|
|
93512
93508
|
if (typeof logLevel === "number" && LogLevel.INFO >= logLevel || typeof logLevel === "string" && LogLevel.INFO >= getLogLevel(logLevel)) {
|
|
93513
93509
|
return (message) => {
|
|
93514
93510
|
console.info(
|
|
93515
|
-
|
|
93516
|
-
${_chalk.bold.hex(colors2.info ?? "#58a6ff")(">")} ${_chalk.bold.bgHex(colors2.info ?? "#58a6ff").whiteBright(
|
|
93511
|
+
`${_chalk.bold.hex(colors2.info ?? "#58a6ff")(">")} ${_chalk.bold.bgHex(colors2.info ?? "#58a6ff").whiteBright(
|
|
93517
93512
|
" \u2139 Info "
|
|
93518
|
-
)} ${_chalk.hex(colors2.info ?? "#58a6ff")(formatLogMessage(message))}
|
|
93513
|
+
)} ${_chalk.hex(colors2.info ?? "#58a6ff")(formatLogMessage(message))}\r
|
|
93519
93514
|
`
|
|
93520
93515
|
);
|
|
93521
93516
|
};
|
|
@@ -93523,20 +93518,18 @@ ${_chalk.bold.hex(colors2.info ?? "#58a6ff")(">")} ${_chalk.bold.bgHex(colors2.i
|
|
|
93523
93518
|
if (typeof logLevel === "number" && LogLevel.DEBUG >= logLevel || typeof logLevel === "string" && LogLevel.DEBUG >= getLogLevel(logLevel)) {
|
|
93524
93519
|
return (message) => {
|
|
93525
93520
|
console.debug(
|
|
93526
|
-
|
|
93527
|
-
${_chalk.bold.hex(colors2.brand ?? "#1fb2a6")(">")} ${_chalk.bold.bgHex(colors2.brand ?? "#1fb2a6").whiteBright(
|
|
93521
|
+
`${_chalk.bold.hex(colors2.brand ?? "#1fb2a6")(">")} ${_chalk.bold.bgHex(colors2.brand ?? "#1fb2a6").whiteBright(
|
|
93528
93522
|
" \u{1F6E0} Debug "
|
|
93529
|
-
)} ${_chalk.hex(colors2.brand ?? "#1fb2a6")(formatLogMessage(message))}
|
|
93523
|
+
)} ${_chalk.hex(colors2.brand ?? "#1fb2a6")(formatLogMessage(message))}\r
|
|
93530
93524
|
`
|
|
93531
93525
|
);
|
|
93532
93526
|
};
|
|
93533
93527
|
}
|
|
93534
93528
|
return (message) => {
|
|
93535
93529
|
console.log(
|
|
93536
|
-
|
|
93537
|
-
${_chalk.bold.hex(colors2.brand ?? "#1fb2a6")(">")} ${_chalk.bold.bgHex(colors2.brand ?? "#1fb2a6").whiteBright(
|
|
93530
|
+
`${_chalk.bold.hex(colors2.brand ?? "#1fb2a6")(">")} ${_chalk.bold.bgHex(colors2.brand ?? "#1fb2a6").whiteBright(
|
|
93538
93531
|
" \u2709 System "
|
|
93539
|
-
)} ${_chalk.hex(colors2.brand ?? "#1fb2a6")(formatLogMessage(message))}
|
|
93532
|
+
)} ${_chalk.hex(colors2.brand ?? "#1fb2a6")(formatLogMessage(message))}\r
|
|
93540
93533
|
`
|
|
93541
93534
|
);
|
|
93542
93535
|
};
|
|
@@ -67042,10 +67042,9 @@ var init_logger = __esm({
|
|
|
67042
67042
|
if (typeof logLevel === "number" && LogLevel.FATAL >= logLevel || typeof logLevel === "string" && LogLevel.FATAL >= getLogLevel(logLevel)) {
|
|
67043
67043
|
return (message) => {
|
|
67044
67044
|
console.error(
|
|
67045
|
-
|
|
67046
|
-
${_chalk.bold.hex(colors.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.fatal ?? "#7d1a1a").whiteBright(
|
|
67045
|
+
`${_chalk.bold.hex(colors.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.fatal ?? "#7d1a1a").whiteBright(
|
|
67047
67046
|
" \u{1F480} Fatal "
|
|
67048
|
-
)} ${_chalk.hex(colors.danger ?? "#f85149")(formatLogMessage(message))}
|
|
67047
|
+
)} ${_chalk.hex(colors.danger ?? "#f85149")(formatLogMessage(message))}\r
|
|
67049
67048
|
`
|
|
67050
67049
|
);
|
|
67051
67050
|
};
|
|
@@ -67053,10 +67052,9 @@ ${_chalk.bold.hex(colors.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.f
|
|
|
67053
67052
|
if (typeof logLevel === "number" && LogLevel.ERROR >= logLevel || typeof logLevel === "string" && LogLevel.ERROR >= getLogLevel(logLevel)) {
|
|
67054
67053
|
return (message) => {
|
|
67055
67054
|
console.error(
|
|
67056
|
-
|
|
67057
|
-
${_chalk.bold.hex(colors.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.danger ?? "#f85149").whiteBright(
|
|
67055
|
+
`${_chalk.bold.hex(colors.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.danger ?? "#f85149").whiteBright(
|
|
67058
67056
|
" \u2718 Error "
|
|
67059
|
-
)} ${_chalk.hex(colors.danger ?? "#f85149")(formatLogMessage(message))}
|
|
67057
|
+
)} ${_chalk.hex(colors.danger ?? "#f85149")(formatLogMessage(message))}\r
|
|
67060
67058
|
`
|
|
67061
67059
|
);
|
|
67062
67060
|
};
|
|
@@ -67064,10 +67062,9 @@ ${_chalk.bold.hex(colors.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.d
|
|
|
67064
67062
|
if (typeof logLevel === "number" && LogLevel.WARN >= logLevel || typeof logLevel === "string" && LogLevel.WARN >= getLogLevel(logLevel)) {
|
|
67065
67063
|
return (message) => {
|
|
67066
67064
|
console.warn(
|
|
67067
|
-
|
|
67068
|
-
${_chalk.bold.hex(colors.warning ?? "#e3b341")(">")} ${_chalk.bold.bgHex(colors.warning ?? "#e3b341").whiteBright(
|
|
67065
|
+
`${_chalk.bold.hex(colors.warning ?? "#e3b341")(">")} ${_chalk.bold.bgHex(colors.warning ?? "#e3b341").whiteBright(
|
|
67069
67066
|
" \u26A0 Warn "
|
|
67070
|
-
)} ${_chalk.hex(colors.warning ?? "#e3b341")(formatLogMessage(message))}
|
|
67067
|
+
)} ${_chalk.hex(colors.warning ?? "#e3b341")(formatLogMessage(message))}\r
|
|
67071
67068
|
`
|
|
67072
67069
|
);
|
|
67073
67070
|
};
|
|
@@ -67075,10 +67072,9 @@ ${_chalk.bold.hex(colors.warning ?? "#e3b341")(">")} ${_chalk.bold.bgHex(colors.
|
|
|
67075
67072
|
if (typeof logLevel === "number" && LogLevel.SUCCESS >= logLevel || typeof logLevel === "string" && LogLevel.SUCCESS >= getLogLevel(logLevel)) {
|
|
67076
67073
|
return (message) => {
|
|
67077
67074
|
console.info(
|
|
67078
|
-
|
|
67079
|
-
${_chalk.bold.hex(colors.success ?? "#56d364")(">")} ${_chalk.bold.bgHex(colors.success ?? "#56d364").whiteBright(
|
|
67075
|
+
`${_chalk.bold.hex(colors.success ?? "#56d364")(">")} ${_chalk.bold.bgHex(colors.success ?? "#56d364").whiteBright(
|
|
67080
67076
|
" \u2713 Success "
|
|
67081
|
-
)} ${_chalk.hex(colors.success ?? "#56d364")(formatLogMessage(message))}
|
|
67077
|
+
)} ${_chalk.hex(colors.success ?? "#56d364")(formatLogMessage(message))}\r
|
|
67082
67078
|
`
|
|
67083
67079
|
);
|
|
67084
67080
|
};
|
|
@@ -67086,10 +67082,9 @@ ${_chalk.bold.hex(colors.success ?? "#56d364")(">")} ${_chalk.bold.bgHex(colors.
|
|
|
67086
67082
|
if (typeof logLevel === "number" && LogLevel.INFO >= logLevel || typeof logLevel === "string" && LogLevel.INFO >= getLogLevel(logLevel)) {
|
|
67087
67083
|
return (message) => {
|
|
67088
67084
|
console.info(
|
|
67089
|
-
|
|
67090
|
-
${_chalk.bold.hex(colors.info ?? "#58a6ff")(">")} ${_chalk.bold.bgHex(colors.info ?? "#58a6ff").whiteBright(
|
|
67085
|
+
`${_chalk.bold.hex(colors.info ?? "#58a6ff")(">")} ${_chalk.bold.bgHex(colors.info ?? "#58a6ff").whiteBright(
|
|
67091
67086
|
" \u2139 Info "
|
|
67092
|
-
)} ${_chalk.hex(colors.info ?? "#58a6ff")(formatLogMessage(message))}
|
|
67087
|
+
)} ${_chalk.hex(colors.info ?? "#58a6ff")(formatLogMessage(message))}\r
|
|
67093
67088
|
`
|
|
67094
67089
|
);
|
|
67095
67090
|
};
|
|
@@ -67097,20 +67092,18 @@ ${_chalk.bold.hex(colors.info ?? "#58a6ff")(">")} ${_chalk.bold.bgHex(colors.inf
|
|
|
67097
67092
|
if (typeof logLevel === "number" && LogLevel.DEBUG >= logLevel || typeof logLevel === "string" && LogLevel.DEBUG >= getLogLevel(logLevel)) {
|
|
67098
67093
|
return (message) => {
|
|
67099
67094
|
console.debug(
|
|
67100
|
-
|
|
67101
|
-
${_chalk.bold.hex(colors.brand ?? "#1fb2a6")(">")} ${_chalk.bold.bgHex(colors.brand ?? "#1fb2a6").whiteBright(
|
|
67095
|
+
`${_chalk.bold.hex(colors.brand ?? "#1fb2a6")(">")} ${_chalk.bold.bgHex(colors.brand ?? "#1fb2a6").whiteBright(
|
|
67102
67096
|
" \u{1F6E0} Debug "
|
|
67103
|
-
)} ${_chalk.hex(colors.brand ?? "#1fb2a6")(formatLogMessage(message))}
|
|
67097
|
+
)} ${_chalk.hex(colors.brand ?? "#1fb2a6")(formatLogMessage(message))}\r
|
|
67104
67098
|
`
|
|
67105
67099
|
);
|
|
67106
67100
|
};
|
|
67107
67101
|
}
|
|
67108
67102
|
return (message) => {
|
|
67109
67103
|
console.log(
|
|
67110
|
-
|
|
67111
|
-
${_chalk.bold.hex(colors.brand ?? "#1fb2a6")(">")} ${_chalk.bold.bgHex(colors.brand ?? "#1fb2a6").whiteBright(
|
|
67104
|
+
`${_chalk.bold.hex(colors.brand ?? "#1fb2a6")(">")} ${_chalk.bold.bgHex(colors.brand ?? "#1fb2a6").whiteBright(
|
|
67112
67105
|
" \u2709 System "
|
|
67113
|
-
)} ${_chalk.hex(colors.brand ?? "#1fb2a6")(formatLogMessage(message))}
|
|
67106
|
+
)} ${_chalk.hex(colors.brand ?? "#1fb2a6")(formatLogMessage(message))}\r
|
|
67114
67107
|
`
|
|
67115
67108
|
);
|
|
67116
67109
|
};
|
|
@@ -66554,10 +66554,9 @@ var init_logger = __esm({
|
|
|
66554
66554
|
if (typeof logLevel === "number" && LogLevel.FATAL >= logLevel || typeof logLevel === "string" && LogLevel.FATAL >= getLogLevel(logLevel)) {
|
|
66555
66555
|
return (message) => {
|
|
66556
66556
|
console.error(
|
|
66557
|
-
|
|
66558
|
-
${_chalk.bold.hex(colors.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.fatal ?? "#7d1a1a").whiteBright(
|
|
66557
|
+
`${_chalk.bold.hex(colors.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.fatal ?? "#7d1a1a").whiteBright(
|
|
66559
66558
|
" \u{1F480} Fatal "
|
|
66560
|
-
)} ${_chalk.hex(colors.danger ?? "#f85149")(formatLogMessage(message))}
|
|
66559
|
+
)} ${_chalk.hex(colors.danger ?? "#f85149")(formatLogMessage(message))}\r
|
|
66561
66560
|
`
|
|
66562
66561
|
);
|
|
66563
66562
|
};
|
|
@@ -66565,10 +66564,9 @@ ${_chalk.bold.hex(colors.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.f
|
|
|
66565
66564
|
if (typeof logLevel === "number" && LogLevel.ERROR >= logLevel || typeof logLevel === "string" && LogLevel.ERROR >= getLogLevel(logLevel)) {
|
|
66566
66565
|
return (message) => {
|
|
66567
66566
|
console.error(
|
|
66568
|
-
|
|
66569
|
-
${_chalk.bold.hex(colors.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.danger ?? "#f85149").whiteBright(
|
|
66567
|
+
`${_chalk.bold.hex(colors.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.danger ?? "#f85149").whiteBright(
|
|
66570
66568
|
" \u2718 Error "
|
|
66571
|
-
)} ${_chalk.hex(colors.danger ?? "#f85149")(formatLogMessage(message))}
|
|
66569
|
+
)} ${_chalk.hex(colors.danger ?? "#f85149")(formatLogMessage(message))}\r
|
|
66572
66570
|
`
|
|
66573
66571
|
);
|
|
66574
66572
|
};
|
|
@@ -66576,10 +66574,9 @@ ${_chalk.bold.hex(colors.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.d
|
|
|
66576
66574
|
if (typeof logLevel === "number" && LogLevel.WARN >= logLevel || typeof logLevel === "string" && LogLevel.WARN >= getLogLevel(logLevel)) {
|
|
66577
66575
|
return (message) => {
|
|
66578
66576
|
console.warn(
|
|
66579
|
-
|
|
66580
|
-
${_chalk.bold.hex(colors.warning ?? "#e3b341")(">")} ${_chalk.bold.bgHex(colors.warning ?? "#e3b341").whiteBright(
|
|
66577
|
+
`${_chalk.bold.hex(colors.warning ?? "#e3b341")(">")} ${_chalk.bold.bgHex(colors.warning ?? "#e3b341").whiteBright(
|
|
66581
66578
|
" \u26A0 Warn "
|
|
66582
|
-
)} ${_chalk.hex(colors.warning ?? "#e3b341")(formatLogMessage(message))}
|
|
66579
|
+
)} ${_chalk.hex(colors.warning ?? "#e3b341")(formatLogMessage(message))}\r
|
|
66583
66580
|
`
|
|
66584
66581
|
);
|
|
66585
66582
|
};
|
|
@@ -66587,10 +66584,9 @@ ${_chalk.bold.hex(colors.warning ?? "#e3b341")(">")} ${_chalk.bold.bgHex(colors.
|
|
|
66587
66584
|
if (typeof logLevel === "number" && LogLevel.SUCCESS >= logLevel || typeof logLevel === "string" && LogLevel.SUCCESS >= getLogLevel(logLevel)) {
|
|
66588
66585
|
return (message) => {
|
|
66589
66586
|
console.info(
|
|
66590
|
-
|
|
66591
|
-
${_chalk.bold.hex(colors.success ?? "#56d364")(">")} ${_chalk.bold.bgHex(colors.success ?? "#56d364").whiteBright(
|
|
66587
|
+
`${_chalk.bold.hex(colors.success ?? "#56d364")(">")} ${_chalk.bold.bgHex(colors.success ?? "#56d364").whiteBright(
|
|
66592
66588
|
" \u2713 Success "
|
|
66593
|
-
)} ${_chalk.hex(colors.success ?? "#56d364")(formatLogMessage(message))}
|
|
66589
|
+
)} ${_chalk.hex(colors.success ?? "#56d364")(formatLogMessage(message))}\r
|
|
66594
66590
|
`
|
|
66595
66591
|
);
|
|
66596
66592
|
};
|
|
@@ -66598,10 +66594,9 @@ ${_chalk.bold.hex(colors.success ?? "#56d364")(">")} ${_chalk.bold.bgHex(colors.
|
|
|
66598
66594
|
if (typeof logLevel === "number" && LogLevel.INFO >= logLevel || typeof logLevel === "string" && LogLevel.INFO >= getLogLevel(logLevel)) {
|
|
66599
66595
|
return (message) => {
|
|
66600
66596
|
console.info(
|
|
66601
|
-
|
|
66602
|
-
${_chalk.bold.hex(colors.info ?? "#58a6ff")(">")} ${_chalk.bold.bgHex(colors.info ?? "#58a6ff").whiteBright(
|
|
66597
|
+
`${_chalk.bold.hex(colors.info ?? "#58a6ff")(">")} ${_chalk.bold.bgHex(colors.info ?? "#58a6ff").whiteBright(
|
|
66603
66598
|
" \u2139 Info "
|
|
66604
|
-
)} ${_chalk.hex(colors.info ?? "#58a6ff")(formatLogMessage(message))}
|
|
66599
|
+
)} ${_chalk.hex(colors.info ?? "#58a6ff")(formatLogMessage(message))}\r
|
|
66605
66600
|
`
|
|
66606
66601
|
);
|
|
66607
66602
|
};
|
|
@@ -66609,20 +66604,18 @@ ${_chalk.bold.hex(colors.info ?? "#58a6ff")(">")} ${_chalk.bold.bgHex(colors.inf
|
|
|
66609
66604
|
if (typeof logLevel === "number" && LogLevel.DEBUG >= logLevel || typeof logLevel === "string" && LogLevel.DEBUG >= getLogLevel(logLevel)) {
|
|
66610
66605
|
return (message) => {
|
|
66611
66606
|
console.debug(
|
|
66612
|
-
|
|
66613
|
-
${_chalk.bold.hex(colors.brand ?? "#1fb2a6")(">")} ${_chalk.bold.bgHex(colors.brand ?? "#1fb2a6").whiteBright(
|
|
66607
|
+
`${_chalk.bold.hex(colors.brand ?? "#1fb2a6")(">")} ${_chalk.bold.bgHex(colors.brand ?? "#1fb2a6").whiteBright(
|
|
66614
66608
|
" \u{1F6E0} Debug "
|
|
66615
|
-
)} ${_chalk.hex(colors.brand ?? "#1fb2a6")(formatLogMessage(message))}
|
|
66609
|
+
)} ${_chalk.hex(colors.brand ?? "#1fb2a6")(formatLogMessage(message))}\r
|
|
66616
66610
|
`
|
|
66617
66611
|
);
|
|
66618
66612
|
};
|
|
66619
66613
|
}
|
|
66620
66614
|
return (message) => {
|
|
66621
66615
|
console.log(
|
|
66622
|
-
|
|
66623
|
-
${_chalk.bold.hex(colors.brand ?? "#1fb2a6")(">")} ${_chalk.bold.bgHex(colors.brand ?? "#1fb2a6").whiteBright(
|
|
66616
|
+
`${_chalk.bold.hex(colors.brand ?? "#1fb2a6")(">")} ${_chalk.bold.bgHex(colors.brand ?? "#1fb2a6").whiteBright(
|
|
66624
66617
|
" \u2709 System "
|
|
66625
|
-
)} ${_chalk.hex(colors.brand ?? "#1fb2a6")(formatLogMessage(message))}
|
|
66618
|
+
)} ${_chalk.hex(colors.brand ?? "#1fb2a6")(formatLogMessage(message))}\r
|
|
66626
66619
|
`
|
|
66627
66620
|
);
|
|
66628
66621
|
};
|
|
@@ -66554,10 +66554,9 @@ var init_logger = __esm({
|
|
|
66554
66554
|
if (typeof logLevel === "number" && LogLevel.FATAL >= logLevel || typeof logLevel === "string" && LogLevel.FATAL >= getLogLevel(logLevel)) {
|
|
66555
66555
|
return (message) => {
|
|
66556
66556
|
console.error(
|
|
66557
|
-
|
|
66558
|
-
${_chalk.bold.hex(colors.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.fatal ?? "#7d1a1a").whiteBright(
|
|
66557
|
+
`${_chalk.bold.hex(colors.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.fatal ?? "#7d1a1a").whiteBright(
|
|
66559
66558
|
" \u{1F480} Fatal "
|
|
66560
|
-
)} ${_chalk.hex(colors.danger ?? "#f85149")(formatLogMessage(message))}
|
|
66559
|
+
)} ${_chalk.hex(colors.danger ?? "#f85149")(formatLogMessage(message))}\r
|
|
66561
66560
|
`
|
|
66562
66561
|
);
|
|
66563
66562
|
};
|
|
@@ -66565,10 +66564,9 @@ ${_chalk.bold.hex(colors.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.f
|
|
|
66565
66564
|
if (typeof logLevel === "number" && LogLevel.ERROR >= logLevel || typeof logLevel === "string" && LogLevel.ERROR >= getLogLevel(logLevel)) {
|
|
66566
66565
|
return (message) => {
|
|
66567
66566
|
console.error(
|
|
66568
|
-
|
|
66569
|
-
${_chalk.bold.hex(colors.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.danger ?? "#f85149").whiteBright(
|
|
66567
|
+
`${_chalk.bold.hex(colors.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.danger ?? "#f85149").whiteBright(
|
|
66570
66568
|
" \u2718 Error "
|
|
66571
|
-
)} ${_chalk.hex(colors.danger ?? "#f85149")(formatLogMessage(message))}
|
|
66569
|
+
)} ${_chalk.hex(colors.danger ?? "#f85149")(formatLogMessage(message))}\r
|
|
66572
66570
|
`
|
|
66573
66571
|
);
|
|
66574
66572
|
};
|
|
@@ -66576,10 +66574,9 @@ ${_chalk.bold.hex(colors.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.d
|
|
|
66576
66574
|
if (typeof logLevel === "number" && LogLevel.WARN >= logLevel || typeof logLevel === "string" && LogLevel.WARN >= getLogLevel(logLevel)) {
|
|
66577
66575
|
return (message) => {
|
|
66578
66576
|
console.warn(
|
|
66579
|
-
|
|
66580
|
-
${_chalk.bold.hex(colors.warning ?? "#e3b341")(">")} ${_chalk.bold.bgHex(colors.warning ?? "#e3b341").whiteBright(
|
|
66577
|
+
`${_chalk.bold.hex(colors.warning ?? "#e3b341")(">")} ${_chalk.bold.bgHex(colors.warning ?? "#e3b341").whiteBright(
|
|
66581
66578
|
" \u26A0 Warn "
|
|
66582
|
-
)} ${_chalk.hex(colors.warning ?? "#e3b341")(formatLogMessage(message))}
|
|
66579
|
+
)} ${_chalk.hex(colors.warning ?? "#e3b341")(formatLogMessage(message))}\r
|
|
66583
66580
|
`
|
|
66584
66581
|
);
|
|
66585
66582
|
};
|
|
@@ -66587,10 +66584,9 @@ ${_chalk.bold.hex(colors.warning ?? "#e3b341")(">")} ${_chalk.bold.bgHex(colors.
|
|
|
66587
66584
|
if (typeof logLevel === "number" && LogLevel.SUCCESS >= logLevel || typeof logLevel === "string" && LogLevel.SUCCESS >= getLogLevel(logLevel)) {
|
|
66588
66585
|
return (message) => {
|
|
66589
66586
|
console.info(
|
|
66590
|
-
|
|
66591
|
-
${_chalk.bold.hex(colors.success ?? "#56d364")(">")} ${_chalk.bold.bgHex(colors.success ?? "#56d364").whiteBright(
|
|
66587
|
+
`${_chalk.bold.hex(colors.success ?? "#56d364")(">")} ${_chalk.bold.bgHex(colors.success ?? "#56d364").whiteBright(
|
|
66592
66588
|
" \u2713 Success "
|
|
66593
|
-
)} ${_chalk.hex(colors.success ?? "#56d364")(formatLogMessage(message))}
|
|
66589
|
+
)} ${_chalk.hex(colors.success ?? "#56d364")(formatLogMessage(message))}\r
|
|
66594
66590
|
`
|
|
66595
66591
|
);
|
|
66596
66592
|
};
|
|
@@ -66598,10 +66594,9 @@ ${_chalk.bold.hex(colors.success ?? "#56d364")(">")} ${_chalk.bold.bgHex(colors.
|
|
|
66598
66594
|
if (typeof logLevel === "number" && LogLevel.INFO >= logLevel || typeof logLevel === "string" && LogLevel.INFO >= getLogLevel(logLevel)) {
|
|
66599
66595
|
return (message) => {
|
|
66600
66596
|
console.info(
|
|
66601
|
-
|
|
66602
|
-
${_chalk.bold.hex(colors.info ?? "#58a6ff")(">")} ${_chalk.bold.bgHex(colors.info ?? "#58a6ff").whiteBright(
|
|
66597
|
+
`${_chalk.bold.hex(colors.info ?? "#58a6ff")(">")} ${_chalk.bold.bgHex(colors.info ?? "#58a6ff").whiteBright(
|
|
66603
66598
|
" \u2139 Info "
|
|
66604
|
-
)} ${_chalk.hex(colors.info ?? "#58a6ff")(formatLogMessage(message))}
|
|
66599
|
+
)} ${_chalk.hex(colors.info ?? "#58a6ff")(formatLogMessage(message))}\r
|
|
66605
66600
|
`
|
|
66606
66601
|
);
|
|
66607
66602
|
};
|
|
@@ -66609,20 +66604,18 @@ ${_chalk.bold.hex(colors.info ?? "#58a6ff")(">")} ${_chalk.bold.bgHex(colors.inf
|
|
|
66609
66604
|
if (typeof logLevel === "number" && LogLevel.DEBUG >= logLevel || typeof logLevel === "string" && LogLevel.DEBUG >= getLogLevel(logLevel)) {
|
|
66610
66605
|
return (message) => {
|
|
66611
66606
|
console.debug(
|
|
66612
|
-
|
|
66613
|
-
${_chalk.bold.hex(colors.brand ?? "#1fb2a6")(">")} ${_chalk.bold.bgHex(colors.brand ?? "#1fb2a6").whiteBright(
|
|
66607
|
+
`${_chalk.bold.hex(colors.brand ?? "#1fb2a6")(">")} ${_chalk.bold.bgHex(colors.brand ?? "#1fb2a6").whiteBright(
|
|
66614
66608
|
" \u{1F6E0} Debug "
|
|
66615
|
-
)} ${_chalk.hex(colors.brand ?? "#1fb2a6")(formatLogMessage(message))}
|
|
66609
|
+
)} ${_chalk.hex(colors.brand ?? "#1fb2a6")(formatLogMessage(message))}\r
|
|
66616
66610
|
`
|
|
66617
66611
|
);
|
|
66618
66612
|
};
|
|
66619
66613
|
}
|
|
66620
66614
|
return (message) => {
|
|
66621
66615
|
console.log(
|
|
66622
|
-
|
|
66623
|
-
${_chalk.bold.hex(colors.brand ?? "#1fb2a6")(">")} ${_chalk.bold.bgHex(colors.brand ?? "#1fb2a6").whiteBright(
|
|
66616
|
+
`${_chalk.bold.hex(colors.brand ?? "#1fb2a6")(">")} ${_chalk.bold.bgHex(colors.brand ?? "#1fb2a6").whiteBright(
|
|
66624
66617
|
" \u2709 System "
|
|
66625
|
-
)} ${_chalk.hex(colors.brand ?? "#1fb2a6")(formatLogMessage(message))}
|
|
66618
|
+
)} ${_chalk.hex(colors.brand ?? "#1fb2a6")(formatLogMessage(message))}\r
|
|
66626
66619
|
`
|
|
66627
66620
|
);
|
|
66628
66621
|
};
|
|
@@ -66554,10 +66554,9 @@ var init_logger = __esm({
|
|
|
66554
66554
|
if (typeof logLevel === "number" && LogLevel.FATAL >= logLevel || typeof logLevel === "string" && LogLevel.FATAL >= getLogLevel(logLevel)) {
|
|
66555
66555
|
return (message) => {
|
|
66556
66556
|
console.error(
|
|
66557
|
-
|
|
66558
|
-
${_chalk.bold.hex(colors.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.fatal ?? "#7d1a1a").whiteBright(
|
|
66557
|
+
`${_chalk.bold.hex(colors.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.fatal ?? "#7d1a1a").whiteBright(
|
|
66559
66558
|
" \u{1F480} Fatal "
|
|
66560
|
-
)} ${_chalk.hex(colors.danger ?? "#f85149")(formatLogMessage(message))}
|
|
66559
|
+
)} ${_chalk.hex(colors.danger ?? "#f85149")(formatLogMessage(message))}\r
|
|
66561
66560
|
`
|
|
66562
66561
|
);
|
|
66563
66562
|
};
|
|
@@ -66565,10 +66564,9 @@ ${_chalk.bold.hex(colors.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.f
|
|
|
66565
66564
|
if (typeof logLevel === "number" && LogLevel.ERROR >= logLevel || typeof logLevel === "string" && LogLevel.ERROR >= getLogLevel(logLevel)) {
|
|
66566
66565
|
return (message) => {
|
|
66567
66566
|
console.error(
|
|
66568
|
-
|
|
66569
|
-
${_chalk.bold.hex(colors.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.danger ?? "#f85149").whiteBright(
|
|
66567
|
+
`${_chalk.bold.hex(colors.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.danger ?? "#f85149").whiteBright(
|
|
66570
66568
|
" \u2718 Error "
|
|
66571
|
-
)} ${_chalk.hex(colors.danger ?? "#f85149")(formatLogMessage(message))}
|
|
66569
|
+
)} ${_chalk.hex(colors.danger ?? "#f85149")(formatLogMessage(message))}\r
|
|
66572
66570
|
`
|
|
66573
66571
|
);
|
|
66574
66572
|
};
|
|
@@ -66576,10 +66574,9 @@ ${_chalk.bold.hex(colors.danger ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.d
|
|
|
66576
66574
|
if (typeof logLevel === "number" && LogLevel.WARN >= logLevel || typeof logLevel === "string" && LogLevel.WARN >= getLogLevel(logLevel)) {
|
|
66577
66575
|
return (message) => {
|
|
66578
66576
|
console.warn(
|
|
66579
|
-
|
|
66580
|
-
${_chalk.bold.hex(colors.warning ?? "#e3b341")(">")} ${_chalk.bold.bgHex(colors.warning ?? "#e3b341").whiteBright(
|
|
66577
|
+
`${_chalk.bold.hex(colors.warning ?? "#e3b341")(">")} ${_chalk.bold.bgHex(colors.warning ?? "#e3b341").whiteBright(
|
|
66581
66578
|
" \u26A0 Warn "
|
|
66582
|
-
)} ${_chalk.hex(colors.warning ?? "#e3b341")(formatLogMessage(message))}
|
|
66579
|
+
)} ${_chalk.hex(colors.warning ?? "#e3b341")(formatLogMessage(message))}\r
|
|
66583
66580
|
`
|
|
66584
66581
|
);
|
|
66585
66582
|
};
|
|
@@ -66587,10 +66584,9 @@ ${_chalk.bold.hex(colors.warning ?? "#e3b341")(">")} ${_chalk.bold.bgHex(colors.
|
|
|
66587
66584
|
if (typeof logLevel === "number" && LogLevel.SUCCESS >= logLevel || typeof logLevel === "string" && LogLevel.SUCCESS >= getLogLevel(logLevel)) {
|
|
66588
66585
|
return (message) => {
|
|
66589
66586
|
console.info(
|
|
66590
|
-
|
|
66591
|
-
${_chalk.bold.hex(colors.success ?? "#56d364")(">")} ${_chalk.bold.bgHex(colors.success ?? "#56d364").whiteBright(
|
|
66587
|
+
`${_chalk.bold.hex(colors.success ?? "#56d364")(">")} ${_chalk.bold.bgHex(colors.success ?? "#56d364").whiteBright(
|
|
66592
66588
|
" \u2713 Success "
|
|
66593
|
-
)} ${_chalk.hex(colors.success ?? "#56d364")(formatLogMessage(message))}
|
|
66589
|
+
)} ${_chalk.hex(colors.success ?? "#56d364")(formatLogMessage(message))}\r
|
|
66594
66590
|
`
|
|
66595
66591
|
);
|
|
66596
66592
|
};
|
|
@@ -66598,10 +66594,9 @@ ${_chalk.bold.hex(colors.success ?? "#56d364")(">")} ${_chalk.bold.bgHex(colors.
|
|
|
66598
66594
|
if (typeof logLevel === "number" && LogLevel.INFO >= logLevel || typeof logLevel === "string" && LogLevel.INFO >= getLogLevel(logLevel)) {
|
|
66599
66595
|
return (message) => {
|
|
66600
66596
|
console.info(
|
|
66601
|
-
|
|
66602
|
-
${_chalk.bold.hex(colors.info ?? "#58a6ff")(">")} ${_chalk.bold.bgHex(colors.info ?? "#58a6ff").whiteBright(
|
|
66597
|
+
`${_chalk.bold.hex(colors.info ?? "#58a6ff")(">")} ${_chalk.bold.bgHex(colors.info ?? "#58a6ff").whiteBright(
|
|
66603
66598
|
" \u2139 Info "
|
|
66604
|
-
)} ${_chalk.hex(colors.info ?? "#58a6ff")(formatLogMessage(message))}
|
|
66599
|
+
)} ${_chalk.hex(colors.info ?? "#58a6ff")(formatLogMessage(message))}\r
|
|
66605
66600
|
`
|
|
66606
66601
|
);
|
|
66607
66602
|
};
|
|
@@ -66609,20 +66604,18 @@ ${_chalk.bold.hex(colors.info ?? "#58a6ff")(">")} ${_chalk.bold.bgHex(colors.inf
|
|
|
66609
66604
|
if (typeof logLevel === "number" && LogLevel.DEBUG >= logLevel || typeof logLevel === "string" && LogLevel.DEBUG >= getLogLevel(logLevel)) {
|
|
66610
66605
|
return (message) => {
|
|
66611
66606
|
console.debug(
|
|
66612
|
-
|
|
66613
|
-
${_chalk.bold.hex(colors.brand ?? "#1fb2a6")(">")} ${_chalk.bold.bgHex(colors.brand ?? "#1fb2a6").whiteBright(
|
|
66607
|
+
`${_chalk.bold.hex(colors.brand ?? "#1fb2a6")(">")} ${_chalk.bold.bgHex(colors.brand ?? "#1fb2a6").whiteBright(
|
|
66614
66608
|
" \u{1F6E0} Debug "
|
|
66615
|
-
)} ${_chalk.hex(colors.brand ?? "#1fb2a6")(formatLogMessage(message))}
|
|
66609
|
+
)} ${_chalk.hex(colors.brand ?? "#1fb2a6")(formatLogMessage(message))}\r
|
|
66616
66610
|
`
|
|
66617
66611
|
);
|
|
66618
66612
|
};
|
|
66619
66613
|
}
|
|
66620
66614
|
return (message) => {
|
|
66621
66615
|
console.log(
|
|
66622
|
-
|
|
66623
|
-
${_chalk.bold.hex(colors.brand ?? "#1fb2a6")(">")} ${_chalk.bold.bgHex(colors.brand ?? "#1fb2a6").whiteBright(
|
|
66616
|
+
`${_chalk.bold.hex(colors.brand ?? "#1fb2a6")(">")} ${_chalk.bold.bgHex(colors.brand ?? "#1fb2a6").whiteBright(
|
|
66624
66617
|
" \u2709 System "
|
|
66625
|
-
)} ${_chalk.hex(colors.brand ?? "#1fb2a6")(formatLogMessage(message))}
|
|
66618
|
+
)} ${_chalk.hex(colors.brand ?? "#1fb2a6")(formatLogMessage(message))}\r
|
|
66626
66619
|
`
|
|
66627
66620
|
);
|
|
66628
66621
|
};
|