You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 30, 2024. It is now read-only.
Typo in https://github.com/launchdarkly/java-server-sdk/blob/master/src/main/java/com/launchdarkly/sdk/server/EventBroadcasterImpl.java#L93
#211
Is this a support request?
No
Describe the bug
Typo in https://github.com/launchdarkly/java-server-sdk/blob/master/src/main/java/com/launchdarkly/sdk/server/EventBroadcasterImpl.java#L93
Currently reads :
Loggers.MAIN.warn("Unexpected error from listener ({0}): {1}", l.getClass(), e.toString());
Should read:
Loggers.MAIN.warn("Unexpected error from listener ({}): {}", l.getClass(), e.toString());
To reproduce
Generate an exception from the listener
Expected behavior
The message should be correctly logged
Logs
[LaunchDarkly-tasks-0] WARN com.launchdarkly.sdk.server.LDClient - Unexpected error from listener ({0}): {1}
SDK version
5.0.3
Language version, developer tools
Java
OS/platform
Mac
Additional context
I think this is just a clear typo and should be fixed.
The text was updated successfully, but these errors were encountered: