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 CHANGED
@@ -20,7 +20,7 @@ const config = {
20
20
  it: true
21
21
  },
22
22
  'parserOptions': {
23
- 'ecmaVersion': 2018
23
+ 'ecmaVersion': 2022
24
24
  },
25
25
  }
26
26
 
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.info('BULL/REDIS | Ready | %s', type)
69
+ acapi.log.debug('BULL/REDIS | Ready | %s', type)
70
70
  })
71
71
  return client
72
72
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ac-bootstrap-bull",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "Bull helper",
5
5
  "repository": "admiralcloud/ac-bootstrap-bull",
6
6
  "author": "Mark Poepping <mark.poepping@admiralcloud.com>",