• Updated the pollers to NOT take the duration of the previous poll into account when scheduling the next poll
• Updated to the latest `libSession` version (a few optimisations/fixes)
• Fixed a minor layout issue with the attribution label on the Path screen
Log.error("\(pollerName) failed to process any messages due to error: \(error). \(info)")
Log.error("\(pollerName) failed to process any messages after \(duration,unit:.s)due to error: \(error). \(info). Setting failure count to \(failureCount). Next poll in \(nextPollInterval,unit:.s).")
case.continuePolling,.none:
Log.error("\(pollerName) failed to process any messages due to error: \(error).")
Log.error("\(pollerName) failed to process any messages after \(duration,unit:.s)due to error: \(error). Setting failure count to \(failureCount). Next poll in \(nextPollInterval,unit:.s).")
Log.info("Received no new messages in \(pollerName) after \(duration,unit:.s).")
Log.info("Received no new messages in \(pollerName) after \(duration,unit:.s). Next poll in \(nextPollInterval,unit:.s).")
case(_,0,false):
Log.info("Received \(response.rawMessageCount) new message(s) in \(pollerName) after \(duration,unit:.s), all duplicates - marked the hash we polled with as invalid")
Log.info("Received \(response.rawMessageCount) new message(s) in \(pollerName) after \(duration,unit:.s), all duplicates - marked the hash we polled with as invalid. Next poll in \(nextPollInterval,unit:.s).")
default:
Log.info("Received \(response.validMessageCount) new message(s) in \(pollerName) after \(duration,unit:.s) (duplicates: \(response.rawMessageCount-response.validMessageCount))")
Log.info("Received \(response.validMessageCount) new message(s) in \(pollerName) after \(duration,unit:.s) (duplicates: \(response.rawMessageCount-response.validMessageCount)). Next poll in \(nextPollInterval,unit:.s).")