@automagik/omni 2.260906.5 → 2.260906.7
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/dist/index.js +3 -3
- package/dist/server/index.js +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -30250,7 +30250,7 @@ var init_redact = __esm(() => {
|
|
|
30250
30250
|
// ../core/src/logger/index.ts
|
|
30251
30251
|
function initFromEnv() {
|
|
30252
30252
|
const level = process.env.LOG_LEVEL;
|
|
30253
|
-
if (level && ["debug", "info", "warn", "error"].includes(level)) {
|
|
30253
|
+
if (level && ["debug", "info", "warn", "error", "silent"].includes(level)) {
|
|
30254
30254
|
config.level = level;
|
|
30255
30255
|
}
|
|
30256
30256
|
const format = process.env.LOG_FORMAT;
|
|
@@ -30297,7 +30297,7 @@ function matchesModuleFilter(module) {
|
|
|
30297
30297
|
return false;
|
|
30298
30298
|
}
|
|
30299
30299
|
function writeLog(entry) {
|
|
30300
|
-
if (LOG_LEVEL_VALUES[entry.level] < LOG_LEVEL_VALUES[config.level]) {
|
|
30300
|
+
if (config.level === "silent" || LOG_LEVEL_VALUES[entry.level] < LOG_LEVEL_VALUES[config.level]) {
|
|
30301
30301
|
return;
|
|
30302
30302
|
}
|
|
30303
30303
|
if (!matchesModuleFilter(entry.module)) {
|
|
@@ -136388,7 +136388,7 @@ import { fileURLToPath } from "url";
|
|
|
136388
136388
|
// package.json
|
|
136389
136389
|
var package_default = {
|
|
136390
136390
|
name: "@automagik/omni",
|
|
136391
|
-
version: "2.260906.
|
|
136391
|
+
version: "2.260906.7",
|
|
136392
136392
|
repository: {
|
|
136393
136393
|
type: "git",
|
|
136394
136394
|
url: "git+https://github.com/automagik-dev/omni.git",
|
package/dist/server/index.js
CHANGED
|
@@ -18112,7 +18112,7 @@ var init_redact = __esm(() => {
|
|
|
18112
18112
|
// ../core/src/logger/index.ts
|
|
18113
18113
|
function initFromEnv() {
|
|
18114
18114
|
const level = process.env.LOG_LEVEL;
|
|
18115
|
-
if (level && ["debug", "info", "warn", "error"].includes(level)) {
|
|
18115
|
+
if (level && ["debug", "info", "warn", "error", "silent"].includes(level)) {
|
|
18116
18116
|
config.level = level;
|
|
18117
18117
|
}
|
|
18118
18118
|
const format = process.env.LOG_FORMAT;
|
|
@@ -18159,7 +18159,7 @@ function matchesModuleFilter(module) {
|
|
|
18159
18159
|
return false;
|
|
18160
18160
|
}
|
|
18161
18161
|
function writeLog(entry) {
|
|
18162
|
-
if (LOG_LEVEL_VALUES[entry.level] < LOG_LEVEL_VALUES[config.level]) {
|
|
18162
|
+
if (config.level === "silent" || LOG_LEVEL_VALUES[entry.level] < LOG_LEVEL_VALUES[config.level]) {
|
|
18163
18163
|
return;
|
|
18164
18164
|
}
|
|
18165
18165
|
if (!matchesModuleFilter(entry.module)) {
|
|
@@ -250955,7 +250955,7 @@ var init_sentry_scrub = __esm(() => {
|
|
|
250955
250955
|
var require_package7 = __commonJS((exports, module) => {
|
|
250956
250956
|
module.exports = {
|
|
250957
250957
|
name: "@omni/api",
|
|
250958
|
-
version: "2.260906.
|
|
250958
|
+
version: "2.260906.7",
|
|
250959
250959
|
private: true,
|
|
250960
250960
|
type: "module",
|
|
250961
250961
|
exports: {
|