summaryrefslogtreecommitdiff
path: root/rplugin/python3
diff options
context:
space:
mode:
authorShougo Matsushita <Shougo.Matsu@gmail.com>2016-06-20 20:14:30 +0900
committerShougo Matsushita <Shougo.Matsu@gmail.com>2016-06-20 20:14:30 +0900
commit233f2282f41398491d073c23be4fc5bc359289fe (patch)
treee6b63986657c51481425988d4c755e1433f981aa /rplugin/python3
parent367df6d67322d9b1f3958bd1998eeee9233914ba (diff)
downloaddeoplete.nvim-233f2282f41398491d073c23be4fc5bc359289fe.zip
Add debug message
Diffstat (limited to 'rplugin/python3')
-rw-r--r--rplugin/python3/deoplete/deoplete.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/rplugin/python3/deoplete/deoplete.py b/rplugin/python3/deoplete/deoplete.py
index 9368482..0f10127 100644
--- a/rplugin/python3/deoplete/deoplete.py
+++ b/rplugin/python3/deoplete/deoplete.py
@@ -364,8 +364,10 @@ class Deoplete(logger.LoggingMixin):
self.__custom = context['custom']
def on_event(self, context):
+ self.debug('on_event: ', context['event'])
self.check_recache(context)
for source_name, source in self.itersource(context):
if hasattr(source, 'on_event'):
+ self.debug('on_event Source: %s (%s)', source_name)
source.on_event(context)