Changeset 993 for honeyclient/trunk

Show
Ignore:
Timestamp:
11/08/07 09:48:31 (1 year ago)
Author:
mbriggs
Message:

Insignificant Changes

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • honeyclient/trunk/lib/HoneyClient/DB.pm

    r942 r993  
    386386    = (0,1,2,3); 
    387387our @ERROR_MESSAGES = ( 
    388     "Success!", 
     388    "Success", 
    389389    "Failed with a fatal error", 
    390     "Duplicate object found. Non-fatal warning.", 
    391     "Duplicate object found. Unable to retrieve ID of duplicate record.", 
     390    "Duplicate object found. Non-fatal warning", 
     391    "Duplicate object found. Unable to retrieve ID of duplicate record", 
    392392); 
    393393our $LAST_ERROR = $ERROR_NONE; 
     
    10291029    my $rc = -1; 
    10301030    my $sql = "UPDATE ". $class->_get_table()." SET " . $update . $class->_where_condition($conditions); 
     1031    # Debug Output 
     1032    $LOG->debug($sql); 
    10311033    eval { 
    10321034# Execute UPDATE and Parse mysql_info (e.g. Rows matched: 1  Changed: 1  Warnings: 0)