diff options
author | Shougo Matsushita <Shougo.Matsu@gmail.com> | 2016-06-20 20:14:30 +0900 |
---|---|---|
committer | Shougo Matsushita <Shougo.Matsu@gmail.com> | 2016-06-20 20:14:30 +0900 |
commit | 233f2282f41398491d073c23be4fc5bc359289fe (patch) | |
tree | e6b63986657c51481425988d4c755e1433f981aa /rplugin/python3 | |
parent | 367df6d67322d9b1f3958bd1998eeee9233914ba (diff) | |
download | deoplete.nvim-233f2282f41398491d073c23be4fc5bc359289fe.zip |
Add debug message
Diffstat (limited to 'rplugin/python3')
-rw-r--r-- | rplugin/python3/deoplete/deoplete.py | 2 |
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) |