Ignore:
Timestamp:
03/08/2007 00:29:31 (5 years ago)
Author:
chris
Message:

Convert most printf() and fprintf() calls to use logging framework
instead. (merges [1789])

File:
1 edited

Legend:

Unmodified
Added
Removed
  • box/chris/general/lib/backupclient/BackupClientRestore.cpp

    r1784 r1790  
    261261                        { 
    262262                                // File exists with this name, which is fun. Get rid of it. 
    263                                 ::printf("WARNING: File present with name '%s', removing out of the way of restored directory. Use specific restore with ID to restore this object.", rLocalDirectoryName.c_str()); 
     263                                BOX_WARNING("File present with name '" << 
     264                                        rLocalDirectoryName << "', removing " << 
     265                                        "out of the way of restored directory. " 
     266                                        "Use specific restore with ID to " 
     267                                        "restore this object."); 
    264268                                if(::unlink(rLocalDirectoryName.c_str()) != 0) 
    265269                                { 
Note: See TracChangeset for help on using the changeset viewer.