From 6218cfd064762246c195725181fa8c35056ffcda Mon Sep 17 00:00:00 2001 From: master3395 Date: Tue, 3 Feb 2026 19:28:10 +0100 Subject: [PATCH] Log successful plugin install (upload) to CyberPanel main log --- pluginHolder/views.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pluginHolder/views.py b/pluginHolder/views.py index d617ef2b5..4746f88af 100644 --- a/pluginHolder/views.py +++ b/pluginHolder/views.py @@ -592,6 +592,7 @@ def install_plugin(request, plugin_name): # Set plugin to enabled by default after installation _set_plugin_state(plugin_name, True) + logging.writeToFile(f"Plugin {plugin_name} installed successfully (upload)") return JsonResponse({ 'success': True, 'message': f'Plugin {plugin_name} installed successfully'