mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-24 22:08:08 +01:00
Soften some logging.
// FREEBIE
This commit is contained in:
@@ -110,7 +110,7 @@ public class DispatchManager extends Thread {
|
||||
if (subscription.isPresent()) {
|
||||
dispatchSubscription(reply.getChannel(), subscription.get());
|
||||
} 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(),
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user