diff options
author | Maxime “pep” Buquet <pep@bouah.net> | 2020-03-24 01:31:03 +0100 |
---|---|---|
committer | Maxime “pep” Buquet <pep@bouah.net> | 2020-03-24 01:31:03 +0100 |
commit | 614ed6aa738502867cacb4f09a218bdb51d7f8cb (patch) | |
tree | bcbc212176a53e7513fd298ebeb7c5a74b89b330 | |
parent | 44b6755b501e7e1e1ccbb1d923fc506cbb7587dd (diff) | |
download | poezio-614ed6aa738502867cacb4f09a218bdb51d7f8cb.tar.gz poezio-614ed6aa738502867cacb4f09a218bdb51d7f8cb.tar.bz2 poezio-614ed6aa738502867cacb4f09a218bdb51d7f8cb.tar.xz poezio-614ed6aa738502867cacb4f09a218bdb51d7f8cb.zip |
poezio/core/handlers: More explicit logging for whitespace keepaliveskeepalive-log
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
-rw-r--r-- | poezio/core/handlers.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/poezio/core/handlers.py b/poezio/core/handlers.py index cfdeb271..d972fde9 100644 --- a/poezio/core/handlers.py +++ b/poezio/core/handlers.py @@ -1504,7 +1504,8 @@ class HandlerCore: poezio_colored, nickname=char) except: - log.debug('', exc_info=True) + log.debug('Couldn\'t deserialize stanza. ' + 'Possible whitespace keepalive.') if isinstance(self.core.tabs.current_tab, tabs.XMLTab): self.core.tabs.current_tab.refresh() |