Changeset 1600 for box/chris/merge/bin/bbackupquery/BackupQueries.cpp
- Timestamp:
- 28/04/2007 21:43:48 (5 years ago)
- File:
-
- 1 edited
-
box/chris/merge/bin/bbackupquery/BackupQueries.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
box/chris/merge/bin/bbackupquery/BackupQueries.cpp
r1597 r1600 1716 1716 catch(BoxException &e) 1717 1717 { 1718 printf("ERROR: (%d/%d) during file fetch and comparison for '%s'\n", 1719 e.GetType(), 1720 e.GetSubType(), 1721 storePathDisplay.c_str()); 1718 BOX_ERROR("Failed to fetch and compare " 1719 "'" << 1720 storePathDisplay.c_str() << 1721 "': error " << e.what() << 1722 " (" << e.GetType() << 1723 "/" << e.GetSubType() << ")"); 1722 1724 rParams.mUncheckedFiles ++; 1725 } 1726 catch(std::exception &e) 1727 { 1728 BOX_ERROR("Failed to fetch and compare " 1729 "'" << 1730 storePathDisplay.c_str() << 1731 "': " << e.what()); 1723 1732 } 1724 1733 catch(...) 1725 1734 { 1726 printf("ERROR: (unknown) during file fetch and comparison for '%s'\n", storePathDisplay.c_str()); 1735 BOX_ERROR("Failed to fetch and compare " 1736 "'" << 1737 storePathDisplay.c_str() << 1738 "': unknown error"); 1727 1739 rParams.mUncheckedFiles ++; 1728 1740 }
Note: See TracChangeset
for help on using the changeset viewer.
