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
The onNotification method is logging wrong details when the observation is not found for the request.
The current log has the observation instead of the token, and the token instead of the registration:
// get observation for this requestObservationobservation = registrationStore.getObservation(regid, coapResponse.getToken());
if (observation == null) {
LOG.error("Unexpected error: Unable to find observation with token {} for registration {}", observation,
coapResponse.getToken());
return;
}
The text was updated successfully, but these errors were encountered:
The
onNotification
method is logging wrong details when the observation is not found for the request.The current log has the observation instead of the token, and the token instead of the registration:
The text was updated successfully, but these errors were encountered: