@superhero/core 4.7.10 → 4.7.11

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 CHANGED
@@ -1,3 +1,9 @@
1
+ ---
2
+ #### v4.7.11
3
+ ---
4
+
5
+ Improved on the ability to configure the log instance of the and components by defining a config at path .
6
+
1
7
  ---
2
8
  #### v4.7.10
3
9
  ---
package/index.js CHANGED
@@ -286,7 +286,8 @@ export default class Core
286
286
  */
287
287
  async bootstrap(options)
288
288
  {
289
- Object.assign(Log.config, this.config.find('log'))
289
+ Object.assign(Core.log.config, this.config.find('core/log'))
290
+ Object.assign(this.locate.log.config, this.config.find('locator/log'))
290
291
 
291
292
  if(this.#isForked)
292
293
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@superhero/core",
3
- "version": "4.7.10",
3
+ "version": "4.7.11",
4
4
  "description": "Core functionalities for the superhero framework.",
5
5
  "main": "index.js",
6
6
  "license": "MIT",
@@ -13,12 +13,12 @@
13
13
  "test": "syntax-check; node --test --test-reporter=@superhero/audit/reporter --experimental-test-coverage"
14
14
  },
15
15
  "dependencies": {
16
- "@superhero/locator": "4.7.10",
17
- "@superhero/bootstrap": "4.7.10",
18
- "@superhero/log": "4.7.10"
16
+ "@superhero/locator": "4.7.11",
17
+ "@superhero/bootstrap": "4.7.11",
18
+ "@superhero/log": "4.7.11"
19
19
  },
20
20
  "devDependencies": {
21
- "@superhero/audit": "4.7.10",
21
+ "@superhero/audit": "4.7.11",
22
22
  "@superhero/syntax-check": "0.0.2"
23
23
  },
24
24
  "author": {