@superhero/eventflow-certificates 4.4.3 → 4.4.6

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
@@ -29,7 +29,7 @@ export default class Certificates
29
29
  this.intermediateUID = intermediateUID.toUpperCase()
30
30
  this.leafUID = leafUID.toUpperCase()
31
31
  this.#db = db
32
- this.log = new Log({ label: `[EVENTFLOW:CERTIFICATES:${leafUID}]` })
32
+ this.log = new Log(Object.assign({ label: `[EVENTFLOW:CERTIFICATES:${leafUID}]` }, config.log))
33
33
 
34
34
  deepassign(this.config, config)
35
35
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@superhero/eventflow-certificates",
3
- "version": "4.4.3",
3
+ "version": "4.4.6",
4
4
  "description": "Eventflow certificates is common tls certificates logic used in the eventflow ecosystem.",
5
5
  "keywords": [
6
6
  "eventflow"
@@ -11,7 +11,7 @@
11
11
  ".": "./index.js"
12
12
  },
13
13
  "dependencies": {
14
- "@superhero/log": "^4.0.1",
14
+ "@superhero/log": "^4.0.2",
15
15
  "@superhero/openssl": "^4.0.3",
16
16
  "@superhero/deep": "^4.2.0"
17
17
  },