about summary refs log tree commit diff stats
path: root/src/plugins/python_api.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2016-06-23 00:44:52 +0100
committerJames Booth <boothj5@gmail.com>2016-06-23 00:44:52 +0100
commit61a09476c511c33abd9b6be3d5786fee1fa93b94 (patch)
treeb723d9527204c9f5849fedc2e3f2926f0cf86902 /src/plugins/python_api.c
parent1e37b755fe4030586b6994c397ddc855a659af43 (diff)
downloadprofani-tty-61a09476c511c33abd9b6be3d5786fee1fa93b94.tar.gz
Add macro for plugins completer add
Diffstat (limited to 'src/plugins/python_api.c')
-rw-r--r--src/plugins/python_api.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/plugins/python_api.c b/src/plugins/python_api.c
index a5c5d73c..87a2b4d2 100644
--- a/src/plugins/python_api.c
+++ b/src/plugins/python_api.c
@@ -205,6 +205,9 @@ python_api_completer_add(PyObject *self, PyObject *args)
         return Py_BuildValue("");
     }
 
+    char *plugin_name = _python_plugin_name();
+    log_debug("Autocomplete add %s for %s", key, plugin_name);
+
     Py_ssize_t len = PyList_Size(items);
     char *c_items[len];