@superhero/core 4.1.6 → 4.1.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.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +2 -2
package/index.js CHANGED
@@ -283,7 +283,7 @@ export default class Core
283
283
  */
284
284
  async bootstrap(freeze = true)
285
285
  {
286
- Object.assign(Log.default, this.config.find('log'))
286
+ Object.assign(Log.config, this.config.find('log'))
287
287
 
288
288
  if(this.#isForked)
289
289
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@superhero/core",
3
- "version": "4.1.6",
3
+ "version": "4.1.7",
4
4
  "description": "Core functionalities for the superhero framework.",
5
5
  "main": "index.js",
6
6
  "license": "MIT",
@@ -11,7 +11,7 @@
11
11
  "dependencies": {
12
12
  "@superhero/locator": "^4.4.5",
13
13
  "@superhero/bootstrap": "^4.2.6",
14
- "@superhero/log": "^4.0.2"
14
+ "@superhero/log": "^4.1.1"
15
15
  },
16
16
  "scripts": {
17
17
  "test": "node --trace-warnings --test --experimental-test-coverage"