Changeset 289 in pacpusframework for trunk/src/PacpusLib/PacpusApplication.cpp
- Timestamp:
- Mar 26, 2014, 9:27:40 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/PacpusLib/PacpusApplication.cpp
r280 r289 91 91 } catch (PacpusException& e) { 92 92 (void)e; // unused 93 LOG_ERROR("PacpusException thrown:" << e.what() << "\n" << boost::diagnostic_information(e));93 LOG_ERROR("PacpusException caught:" << e.what() << "\n" << boost::diagnostic_information(e)); 94 94 } catch (boost::exception& e) { 95 95 (void)e; // unused 96 LOG_ERROR("boost::exception thrown:" << boost::diagnostic_information(e));96 LOG_ERROR("boost::exception caught:" << boost::diagnostic_information(e)); 97 97 } catch (std::exception& e) { 98 98 (void)e; // unused 99 LOG_ERROR("std::exception thrown:" << e.what());99 LOG_ERROR("std::exception caught:" << e.what()); 100 100 } 101 101 return false;
Note:
See TracChangeset
for help on using the changeset viewer.