rust-lightning icon indicating copy to clipboard operation
rust-lightning copied to clipboard

Replace verbose event processing logging

Open tnull opened this issue 1 year ago • 0 comments

In https://github.com/lightningdevkit/rust-lightning/pull/3314 we introduced logging around event processing.

Logging in the event processing loop will however turn out to be very spammy, in particular since we recently introduced fallible event handling in which case we directly loop around and retry processing.

We should move the logging to calling handle_event (see https://github.com/lightningdevkit/rust-lightning/pull/3314#issuecomment-2353006381) but probably want to introduce some kind of delay before retrying event handling (which we discussed before, but didn't actually do in #2995.

tnull avatar Sep 23 '24 02:09 tnull