ac-bootstrap-bull 2.0.0 → 2.0.1
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/.eslintrc.js +1 -1
- package/CHANGELOG.md +15 -0
- package/index.js +1 -1
- package/package.json +1 -1
package/.eslintrc.js
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
<a name="2.0.1"></a>
|
|
2
|
+
|
|
3
|
+
## [2.0.1](https://github.com/admiralcloud/ac-bootstrap-bull/compare/v2.0.0..v2.0.1) (2023-02-20 19:06:02)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fix
|
|
7
|
+
|
|
8
|
+
* **App:** Reduce loglevel for on-ready event | MP | [fe5f157c216df6b772184a89256a5581c25962aa](https://github.com/admiralcloud/ac-bootstrap-bull/commit/fe5f157c216df6b772184a89256a5581c25962aa)
|
|
9
|
+
Reduce loglevel for on-ready event
|
|
10
|
+
Related issues: [undefined/undefined#master](undefined/browse/master)
|
|
11
|
+
### Chores
|
|
12
|
+
|
|
13
|
+
* **App:** Updated ESLint to 2022 | MP | [ca64ed9ce691e79e8bd26e1096c475b34d432a2d](https://github.com/admiralcloud/ac-bootstrap-bull/commit/ca64ed9ce691e79e8bd26e1096c475b34d432a2d)
|
|
14
|
+
Updated ESLint to 2022
|
|
15
|
+
Related issues: [undefined/undefined#master](undefined/browse/master)
|
|
1
16
|
<a name="2.0.0"></a>
|
|
2
17
|
|
|
3
18
|
# [2.0.0](https://github.com/admiralcloud/ac-bootstrap-bull/compare/v1.0.14..v2.0.0) (2023-02-19 15:28:13)
|
package/index.js
CHANGED
|
@@ -66,7 +66,7 @@ module.exports = function(acapi) {
|
|
|
66
66
|
acapi.log.error('BULL/REDIS | Problem | %s | %s', type.padEnd(25), _.get(err, 'message'))
|
|
67
67
|
})
|
|
68
68
|
client.on('ready', () => {
|
|
69
|
-
acapi.log.
|
|
69
|
+
acapi.log.debug('BULL/REDIS | Ready | %s', type)
|
|
70
70
|
})
|
|
71
71
|
return client
|
|
72
72
|
}
|