Add some more info to event bus

This commit is contained in:
nea
2023-08-03 17:19:45 +02:00
parent a4c85fd678
commit 2b33dd1b11

View File

@@ -13,7 +13,7 @@ import moe.nea.firmament.Firmament
* A pubsub event bus.
*
* [subscribe] to events [publish]ed on this event bus.
* Subscriptions may not necessarily be delivered in the order or registering.
* Subscriptions may not necessarily be delivered in the order of registering.
*/
open class FirmamentEventBus<T : FirmamentEvent> {
data class Handler<T>(val invocation: (T) -> Unit, val receivesCancelled: Boolean)
@@ -33,7 +33,7 @@ open class FirmamentEventBus<T : FirmamentEvent> {
try {
function.invocation(event)
} catch (e: Exception) {
Firmament.logger.error("Caught exception during processing event $event", e)
Firmament.logger.error("Caught exception during processing event $event by $function", e)
}
}
}