@antelopejs/core 1.4.1 → 1.4.3

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.
@@ -71,10 +71,10 @@ function resolveLevelValue(level) {
71
71
  }
72
72
  function getChannelFilter(channel) {
73
73
  if (!loggingConfig.channelFilter) {
74
- return exports.levelMap.warn;
74
+ return exports.levelMap.info;
75
75
  }
76
76
  let match = -1;
77
- let matchValue = exports.levelMap.warn;
77
+ let matchValue = exports.levelMap.info;
78
78
  for (const key of Object.keys(loggingConfig.channelFilter)) {
79
79
  if (key.endsWith("*")) {
80
80
  const prefix = key.substring(0, key.length - 1);
@@ -169,7 +169,7 @@ function registerLogHandler() {
169
169
  }
170
170
  function initializeLogger() {
171
171
  globalLogger = new logger_1.Logger();
172
- globalLogger.setMinLevel(log_formatter_1.LogLevel.WARN);
172
+ globalLogger.setMinLevel(log_formatter_1.LogLevel.INFO);
173
173
  if (loggingConfig.channelFilter) {
174
174
  for (const [channel, level] of Object.entries(loggingConfig.channelFilter)) {
175
175
  globalLogger.setChannelLevel(channel, resolveLevelValue(level));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@antelopejs/core",
3
- "version": "1.4.1",
3
+ "version": "1.4.3",
4
4
  "description": "Modular Node.js framework with interface-based architecture for building extensible applications",
5
5
  "repository": {
6
6
  "type": "git",
@@ -50,7 +50,7 @@
50
50
  "test:coverage": "c8 --check-coverage --lines 90 --functions 90 --branches 90 --statements 90 mocha --require ts-node/register --require test/setup.ts 'test/**/*.test.ts' --exit"
51
51
  },
52
52
  "dependencies": {
53
- "@antelopejs/interface-core": "^0.0.5",
53
+ "@antelopejs/interface-core": "^0.0.6",
54
54
  "@types/proper-lockfile": "^4.1.4",
55
55
  "boxen": "^8.0.1",
56
56
  "chalk": "^4.1.2",