]> git.proxmox.com Git - pve-common.git/blobdiff - src/PVE/CLIHandler.pm
PVE::CLIHandler - allow to set LOG ID with $ENV{PVE_LOG_ID}
[pve-common.git] / src / PVE / CLIHandler.pm
index 0b93a4bc224fa5021d2bb29bfe6f391bec89fbb7..6eab3c62bbf8dda07ebc0ed1eed216cb8d288a6e 100644 (file)
@@ -616,7 +616,8 @@ sub run_cli_handler {
 
     $exename = &$get_exe_name($class);
 
-    initlog($exename);
+    my $logid = $ENV{PVE_LOG_ID} || $exename;
+    initlog($logid);
 
     no strict 'refs';
     $cmddef = ${"${class}::cmddef"};