Skip to content

Commit

Permalink
chore: Bump version (#174)
Browse files Browse the repository at this point in the history
  • Loading branch information
felipecsl authored Dec 11, 2024
1 parent cc921ef commit 3eb5ce4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eppo/js-client-sdk-common",
"version": "4.6.2",
"version": "4.6.3",
"description": "Common library for Eppo JavaScript SDKs (web, react native, and node)",
"main": "dist/index.js",
"files": [
Expand Down
4 changes: 3 additions & 1 deletion src/events/event-delivery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ export default class EventDelivery {

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

0 comments on commit 3eb5ce4

Please sign in to comment.