Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(sse): change logger level to display more information to the users #1204

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/forestadmin-client/src/events-subscription/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default class EventsSubscriptionService implements BaseEventsSubscription
async subscribeEvents(): Promise<void> {
if (!this.options.instantCacheRefresh) {
this.options.logger(
'Debug',
'Info',
'Event source deactivated.. Use agent option [instantCacheRefresh=true] ' +
'if you want to activate them',
);
Expand Down Expand Up @@ -89,7 +89,7 @@ export default class EventsSubscriptionService implements BaseEventsSubscription
const { status, message } = event;

if ([502, 503, 504].includes(status)) {
this.options.logger('Debug', 'Server Event - Connection lost trying to reconnect…');
this.options.logger('Warn', 'Server Event - Connection lost trying to reconnect…');

return;
}
Expand All @@ -107,7 +107,7 @@ export default class EventsSubscriptionService implements BaseEventsSubscription

private onEventOpenAgain() {
this.options.logger(
'Debug',
'Info',
'Server Event - Open EventSource (SSE) connection with Forest Admin servers',
);

Expand Down
Loading