Changeset 1414

Show
Ignore:
Timestamp:
04/02/08 00:30:00 (3 months ago)
Author:
kindlund
Message:

Reduced log verbosity.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • honeyclient/branches/exp/kindlund-simpler_agent/lib/HoneyClient/Manager/VM.pm

    r1319 r1414  
    754754        sleep (1); 
    755755        $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); 
    758757        return ($URL); 
    759758 
     
    827826    # the parent process... 
    828827    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); 
    831829        $ret = kill("QUIT", $DAEMON_PID); 
    832830 
     
    834832        # try 'KILL'. 
    835833        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); 
    838835            kill("KILL", $DAEMON_PID); 
    839836        }