commit 9be3c22196ecc64dc5d07559b6c9920bbdc5fd37
parent 37443df6b0cc72a1b471c076546d51df47fce079
Author: Joris Vink <joris@coders.se>
Date: Thu, 9 Feb 2017 13:38:09 +0100
like other flavors, log if python is enabled.
Diffstat:
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/src/kore.c b/src/kore.c
@@ -439,6 +439,9 @@ kore_server_start(void)
#if defined(KORE_USE_JSONRPC)
kore_log(LOG_NOTICE, "jsonrpc built-in enabled");
#endif
+#if defined(KORE_USE_PYTHON)
+ kore_log(LOG_NOTICE, "python built-in enabled");
+#endif
#if !defined(KORE_SINGLE_BINARY)
rcall = kore_runtime_getcall("kore_parent_configure");
if (rcall != NULL) {