Changeset 1414
- Timestamp:
- 04/02/08 00:30:00 (3 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
honeyclient/branches/exp/kindlund-simpler_agent/lib/HoneyClient/Manager/VM.pm
r1319 r1414 754 754 sleep (1); 755 755 $DAEMON_PID = $pid; 756 # XXX: Delete this, eventually. 757 $LOG->info("Initializing VM daemon at PID: " . $DAEMON_PID); 756 $LOG->debug("Initializing VM daemon at PID: " . $DAEMON_PID); 758 757 return ($URL); 759 758 … … 827 826 # the parent process... 828 827 if (defined($DAEMON_PID) && $DAEMON_PID) { 829 # XXX: Delete this, eventually. 830 $LOG->info("Destroying VM daemon at PID: " . $DAEMON_PID); 828 $LOG->debug("Destroying VM daemon at PID: " . $DAEMON_PID); 831 829 $ret = kill("QUIT", $DAEMON_PID); 832 830 … … 834 832 # try 'KILL'. 835 833 if (kill("QUIT", $DAEMON_PID)) { 836 # XXX: Delete this, eventually. 837 $LOG->warn("Killing VM daemon at PID: " . $DAEMON_PID); 834 $LOG->debug("Killing VM daemon at PID: " . $DAEMON_PID); 838 835 kill("KILL", $DAEMON_PID); 839 836 }
