summaryrefslogtreecommitdiff
path: root/src/main/kotlin/event/UltraNotifierEvents.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/event/UltraNotifierEvents.kt')
-rw-r--r--src/main/kotlin/event/UltraNotifierEvents.kt5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/main/kotlin/event/UltraNotifierEvents.kt b/src/main/kotlin/event/UltraNotifierEvents.kt
index 7190b63..9c1e1ee 100644
--- a/src/main/kotlin/event/UltraNotifierEvents.kt
+++ b/src/main/kotlin/event/UltraNotifierEvents.kt
@@ -9,9 +9,12 @@ object UltraNotifierEvents {
//#else
me.bush.eventbus.bus.EventBus { UltraNotifier.logger.warn("EventBus: $it") }
//#endif
+
@JvmStatic
fun <T : UltraEvent> post(event: T): T {
- UltraNotifier.logger.info("Posting $event")
+ if (event !is UltraEvent.Silent<*>) {
+ UltraNotifier.logger.info("Posting $event")
+ }
eventBus.post(event)
return event
}