From f10061861ee9f02d0c41d2cab35c79ee8caa8243 Mon Sep 17 00:00:00 2001 From: MoojMidge <56883549+MoojMidge@users.noreply.github.com> Date: Mon, 9 Dec 2024 13:56:30 +1100 Subject: [PATCH] Log handle used with plugin invocations --- resources/lib/youtube_plugin/kodion/plugin_runner.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/resources/lib/youtube_plugin/kodion/plugin_runner.py b/resources/lib/youtube_plugin/kodion/plugin_runner.py index 7b7ede27f..cd25ca8f5 100644 --- a/resources/lib/youtube_plugin/kodion/plugin_runner.py +++ b/resources/lib/youtube_plugin/kodion/plugin_runner.py @@ -56,11 +56,13 @@ def run(context=_context, context.log_notice('Plugin: Running v{version}' '\n\tKodi: v{kodi}' '\n\tPython: v{python}' + '\n\tHandle: {handle}' '\n\tPath: |{path}|' '\n\tParams: |{params}|' .format(version=context.get_version(), kodi=str(system_version), python=system_version.get_python_version(), + handle=context.get_handle(), path=context.get_path(), params=params))