@adobe/spacecat-shared-utils 1.112.0 → 1.112.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/CHANGELOG.md +6 -0
- package/package.json +1 -1
- package/src/sqs.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [@adobe/spacecat-shared-utils-v1.112.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-utils-v1.112.0...@adobe/spacecat-shared-utils-v1.112.1) (2026-04-04)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* downgrade noisy shared library logs to debug ([#1505](https://github.com/adobe/spacecat-shared/issues/1505)) ([e189419](https://github.com/adobe/spacecat-shared/commit/e189419e6b308133f707f5b78c3ed038d7363a5d))
|
|
6
|
+
|
|
1
7
|
## [@adobe/spacecat-shared-utils-v1.112.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-utils-v1.111.0...@adobe/spacecat-shared-utils-v1.112.0) (2026-04-02)
|
|
2
8
|
|
|
3
9
|
### Features
|
package/package.json
CHANGED
package/src/sqs.js
CHANGED
|
@@ -98,7 +98,7 @@ class SQS {
|
|
|
98
98
|
const data = await this.sqsClient.send(msgCommand);
|
|
99
99
|
const queueName = queueUrl?.split('/').pop() || 'unknown';
|
|
100
100
|
const messageType = body.type || 'unknown';
|
|
101
|
-
this.log.
|
|
101
|
+
this.log.debug(`Message sent. Queue: ${queueName}, Type: ${messageType}, MessageID: ${data.MessageId}${body.traceId ? `, TraceID: ${body.traceId}` : ''}`);
|
|
102
102
|
} catch (e) {
|
|
103
103
|
const { type, code, message: msg } = e;
|
|
104
104
|
this.log.error(`Message send failed. Type: ${type}, Code: ${code}, Message: ${msg}`, e);
|