]> git.proxmox.com Git - pve-manager.git/commitdiff
do not log child start/end
authorDietmar Maurer <dietmar@proxmox.com>
Thu, 10 Nov 2011 08:31:57 +0000 (09:31 +0100)
committerDietmar Maurer <dietmar@proxmox.com>
Thu, 10 Nov 2011 08:31:57 +0000 (09:31 +0100)
www/manager/startup.pl

index 5d799897612f77816f0c676cca4f902ce2cb2c5f..fc238a75a717960b30a30b7e23a1819fbc79a09e 100755 (executable)
@@ -33,7 +33,7 @@ use PVE::INotify;
 use PVE::RPCEnvironment;
 
 sub childinit {
-    syslog ('info', "Starting new child $$");
+    syslog ('info', "Starting new child $$");
 
     eval {
        PVE::INotify::inotify_init();
@@ -45,7 +45,7 @@ sub childinit {
 
 sub childexit {
     # BUG: seems this is not called if we do $r->child_terminate()
-    syslog ('info', "Finish child $$");
+    syslog ('info', "Finish child $$");
 }
 
 my $s = Apache2::ServerUtil->server;