mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 06:12:05 +01:00
Improve MessageEventManager's log message
This commit is contained in:
parent
61bdc6f28c
commit
a8a148945f
1 changed files with 2 additions and 2 deletions
|
@ -179,7 +179,7 @@ public final class MessageEventManager extends Manager {
|
|||
method.invoke(listener, new Object[] { from, packetID, this });
|
||||
}
|
||||
} catch (Exception e) {
|
||||
LOGGER.log(Level.SEVERE, "Error while invoking MessageEventRequestListener", e);
|
||||
LOGGER.log(Level.SEVERE, "Error while invoking MessageEventRequestListener's " + methodName, e);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -199,7 +199,7 @@ public final class MessageEventManager extends Manager {
|
|||
method.invoke(listener, new Object[] { from, packetID });
|
||||
}
|
||||
} catch (Exception e) {
|
||||
LOGGER.log(Level.SEVERE, "Error while invoking MessageEventNotificationListener", e);
|
||||
LOGGER.log(Level.SEVERE, "Error while invoking MessageEventNotificationListener's " + methodName, e);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue