Skip to content

Commit 3eb5ce4

Browse files
authored
chore: Bump version (#174)
1 parent cc921ef commit 3eb5ce4

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eppo/js-client-sdk-common",
3-
"version": "4.6.2",
3+
"version": "4.6.3",
44
"description": "Common library for Eppo JavaScript SDKs (web, react native, and node)",
55
"main": "dist/index.js",
66
"files": [

src/events/event-delivery.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ export default class EventDelivery {
77

88
async deliver(batch: Event[]): Promise<boolean> {
99
try {
10-
logger.info(`[EventDispatcher] Delivering batch of ${batch.length} events...`);
10+
logger.info(
11+
`[EventDispatcher] Delivering batch of ${batch.length} events to ${this.ingestionUrl}...`,
12+
);
1113
const response = await fetch(this.ingestionUrl, {
1214
method: 'POST',
1315
headers: { 'Content-Type': 'application/json' },

0 commit comments

Comments
 (0)