parent
d4e618893c
commit
20dc32413f
|
@ -110,7 +110,7 @@ public class DispatchManager extends Thread {
|
||||||
if (subscription.isPresent()) {
|
if (subscription.isPresent()) {
|
||||||
dispatchSubscription(reply.getChannel(), subscription.get());
|
dispatchSubscription(reply.getChannel(), subscription.get());
|
||||||
} else {
|
} else {
|
||||||
logger.warn("Received subscribe event for non-existing channel: " + reply.getChannel());
|
logger.info("Received subscribe event for non-existing channel: " + reply.getChannel());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -175,7 +175,9 @@ public class MessageController {
|
||||||
message.get().getTimestamp(),
|
message.get().getTimestamp(),
|
||||||
Optional.fromNullable(message.get().getRelay()));
|
Optional.fromNullable(message.get().getRelay()));
|
||||||
}
|
}
|
||||||
} catch (NoSuchUserException | NotPushRegisteredException | TransientPushFailureException e) {
|
} catch (NotPushRegisteredException e) {
|
||||||
|
logger.info("User no longer push registered for delivery receipt: " + e.getMessage());
|
||||||
|
} catch (NoSuchUserException | TransientPushFailureException e) {
|
||||||
logger.warn("Sending delivery receipt", e);
|
logger.warn("Sending delivery receipt", e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue