summaryrefslogtreecommitdiff
path: root/rplugin/python3/deoplete/logger.py
AgeCommit message (Collapse)Author
2019-11-20Don't use vim.vars.get(): it does not work in Vim8Shougo Matsushita
2019-07-17Fix lint errorsShougo Matsushita
2019-07-17Fix type errorsShougo Matsushita
2019-07-17Add type annotation in __init__.pyShougo Matsushita
2019-07-17Add type annotation in logger.pyShougo Matsushita
2018-11-23Improve exceptShougo Matsushita
2018-11-22Change `neovim` module to `pynvim`E Kawashima
2018-02-22logger.setup: only display "Logging to" msg once in VimDaniel Hahler
2018-02-22deoplete#util#print_error: handle optional nameDaniel Hahler
This is used from the Python logger to pass through the logger's name, which is useful when logging from sources (e.g. deoplete-jedi).
2018-02-07Do not use WarningMsg with logging-to messageDaniel Hahler
This turns up in red for me, but is just an informational message.
2018-02-05logger: add process/PID to log_formatDaniel Hahler
This is useful to have given that there are child processes now by default, and also when logging to the same file from multiple sources (Neovim instances).
2017-12-04"debug_enabled" is deprecated.Shougo Matsushita
2016-11-15Fix lint errorShougo Matsushita
2016-11-15Add mypy executionShougo Matsushita
2016-08-12Reformatted imports using PEP8 conventions.Tommy Allen
closes #325
2016-06-20Remove g:deoplete#enable_debug variableShougo Matsushita
2016-03-26Ignore missing pkg_resourcesTommy Allen
Fixes #239
2016-03-24Fix can not get the attributes, and Rename '__logname' to 'name'Koichi Shiraishi
Signed-off-by: Koichi Shiraishi <k@zchee.io>
2016-03-23Use Python's logging facilityTommy Allen
- Updated documentation - Enable logging through RPC request Closes #224