account-lookup-service 17.4.0-csi-1233.1 → 17.4.0-csi-1233.2

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/.ncurc.yaml CHANGED
@@ -1,6 +1,5 @@
1
1
  ## Add a TODO comment indicating the reason for each rejected dependency upgrade added to this list, and what should be done to resolve it (i.e. handle it through a story, etc).
2
2
  reject: [
3
3
  # TODO: v6+ (ref: https://github.com/sindresorhus/get-port/releases/tag/v6.0.0) is an ESM library and thus not compatible with CommonJS. Future story needed to resolve.
4
- "get-port",
5
- "@mojaloop/central-services-logger"
4
+ "get-port"
6
5
  ]
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "account-lookup-service",
3
3
  "description": "Account Lookup Service is used to validate Party and Participant lookups.",
4
- "version": "17.4.0-csi-1233.1",
4
+ "version": "17.4.0-csi-1233.2",
5
5
  "license": "Apache-2.0",
6
6
  "author": "ModusBox",
7
7
  "contributors": [
@@ -93,7 +93,7 @@
93
93
  "@hapi/vision": "7.0.3",
94
94
  "@mojaloop/central-services-error-handling": "13.0.7",
95
95
  "@mojaloop/central-services-health": "15.0.4",
96
- "@mojaloop/central-services-logger": "11.5.5",
96
+ "@mojaloop/central-services-logger": "11.6.1",
97
97
  "@mojaloop/central-services-metrics": "12.4.5",
98
98
  "@mojaloop/central-services-shared": "18.22.2-snapshot.2",
99
99
  "@mojaloop/central-services-stream": "11.5.1",
@@ -119,7 +119,6 @@
119
119
  "rc": "1.2.8"
120
120
  },
121
121
  "overrides": {
122
- "@mojaloop/central-services-logger": "11.5.5",
123
122
  "postcss": {
124
123
  "nanoid": "^3.3.8"
125
124
  },
@@ -75,7 +75,7 @@ const createErrorHandlerOnSendingCallback = (config, logger) => async (err, head
75
75
  } catch (exc) {
76
76
  // We can't do anything else here- we _must_ handle all errors _within_ this function because
77
77
  // we've already sent a sync response- we cannot throw.
78
- logger.error('failed to handleErrorOnSendingCallback', exc)
78
+ logger.error('failed to handleErrorOnSendingCallback. No further processing!', exc)
79
79
  }
80
80
  }
81
81
 
package/src/lib/index.js CHANGED
@@ -5,7 +5,6 @@ const logger = loggerFactory('ALS') // global logger without context
5
5
 
6
6
  module.exports = {
7
7
  logger,
8
- loggerFactory,
9
8
  asyncStorage,
10
9
  TransformFacades
11
10
  }