@matterbridge/core 3.7.1-dev-20260324-9c29691 → 3.7.1-dev-20260325-72b7b24
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/matterbridge.js +5 -5
- package/package.json +5 -5
package/dist/matterbridge.js
CHANGED
|
@@ -85,7 +85,7 @@ export class Matterbridge extends EventEmitter {
|
|
|
85
85
|
logName: 'Matter',
|
|
86
86
|
logNameColor: '\x1b[34m',
|
|
87
87
|
logTimestampFormat: 4,
|
|
88
|
-
logLevel:
|
|
88
|
+
logLevel: "debug",
|
|
89
89
|
});
|
|
90
90
|
matterLogLevel = this.matterLog.logLevel;
|
|
91
91
|
matterFileLogger = false;
|
|
@@ -338,7 +338,7 @@ export class Matterbridge extends EventEmitter {
|
|
|
338
338
|
await createDirectory(this.matterbridgeCertDirectory, 'Matterbridge Matter Certificate Directory', this.log);
|
|
339
339
|
const currentFileDirectory = path.dirname(fileURLToPath(import.meta.url));
|
|
340
340
|
this.rootDirectory = currentFileDirectory.includes(path.join('packages', 'core')) ? path.resolve(currentFileDirectory, '../', '../', '../') : path.resolve(currentFileDirectory, '../', '../', '..', '../');
|
|
341
|
-
this.environment.vars.set('log.level', MatterLogLevel.
|
|
341
|
+
this.environment.vars.set('log.level', MatterLogLevel.DEBUG);
|
|
342
342
|
this.environment.vars.set('log.format', hasParameter('no-ansi') || process.env.NO_COLOR === '1' ? MatterLogFormat.PLAIN : MatterLogFormat.ANSI);
|
|
343
343
|
this.environment.vars.set('path.root', path.join(this.matterbridgeDirectory, MATTER_STORAGE_NAME));
|
|
344
344
|
this.environment.vars.set('runtime.signals', false);
|
|
@@ -468,7 +468,7 @@ export class Matterbridge extends EventEmitter {
|
|
|
468
468
|
}
|
|
469
469
|
}
|
|
470
470
|
else {
|
|
471
|
-
this.log.logLevel = await this.nodeContext.get('matterbridgeLogLevel',
|
|
471
|
+
this.log.logLevel = await this.nodeContext.get('matterbridgeLogLevel', "info");
|
|
472
472
|
}
|
|
473
473
|
this.logLevel = this.log.logLevel;
|
|
474
474
|
this.frontend.logLevel = this.log.logLevel;
|
|
@@ -508,9 +508,9 @@ export class Matterbridge extends EventEmitter {
|
|
|
508
508
|
}
|
|
509
509
|
}
|
|
510
510
|
else {
|
|
511
|
-
Logger.level = (await this.nodeContext.get('matterLogLevel',
|
|
511
|
+
Logger.level = (await this.nodeContext.get('matterLogLevel', MatterLogLevel.INFO));
|
|
512
512
|
}
|
|
513
|
-
Logger.format = MatterLogFormat.ANSI;
|
|
513
|
+
Logger.format = hasParameter('no-ansi') || process.env.NO_COLOR === '1' ? MatterLogFormat.PLAIN : MatterLogFormat.ANSI;
|
|
514
514
|
this.matterLogLevel = MatterLogLevel.names[Logger.level];
|
|
515
515
|
if (hasParameter('matterfilelogger') || (await this.nodeContext.get('matterFileLog', false))) {
|
|
516
516
|
this.matterFileLogger = true;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@matterbridge/core",
|
|
3
|
-
"version": "3.7.1-dev-
|
|
3
|
+
"version": "3.7.1-dev-20260325-72b7b24",
|
|
4
4
|
"description": "Matterbridge core library",
|
|
5
5
|
"author": "https://github.com/Luligu",
|
|
6
6
|
"homepage": "https://matterbridge.io/",
|
|
@@ -122,10 +122,10 @@
|
|
|
122
122
|
],
|
|
123
123
|
"dependencies": {
|
|
124
124
|
"@matter/main": "0.16.10",
|
|
125
|
-
"@matterbridge/dgram": "3.7.1-dev-
|
|
126
|
-
"@matterbridge/thread": "3.7.1-dev-
|
|
127
|
-
"@matterbridge/types": "3.7.1-dev-
|
|
128
|
-
"@matterbridge/utils": "3.7.1-dev-
|
|
125
|
+
"@matterbridge/dgram": "3.7.1-dev-20260325-72b7b24",
|
|
126
|
+
"@matterbridge/thread": "3.7.1-dev-20260325-72b7b24",
|
|
127
|
+
"@matterbridge/types": "3.7.1-dev-20260325-72b7b24",
|
|
128
|
+
"@matterbridge/utils": "3.7.1-dev-20260325-72b7b24",
|
|
129
129
|
"express": "5.2.1",
|
|
130
130
|
"multer": "2.1.1",
|
|
131
131
|
"node-ansi-logger": "3.2.0",
|