Changeset 289 in pacpusframework for trunk/src/PacpusLib


Ignore:
Timestamp:
03/26/14 21:27:40 (10 years ago)
Author:
Marek Kurdej
Message:

Minor: more diagnostic information on exceptions in DbitePlayer and PacpusSensor.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/PacpusLib/PacpusApplication.cpp

    r280 r289  
    9191    } catch (PacpusException& e) {
    9292        (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));
    9494    } catch (boost::exception& e) {
    9595        (void)e; // unused
    96         LOG_ERROR("boost::exception thrown:" << boost::diagnostic_information(e));
     96        LOG_ERROR("boost::exception caught:" << boost::diagnostic_information(e));
    9797    } catch (std::exception& e) {
    9898        (void)e; // unused
    99         LOG_ERROR("std::exception thrown:" << e.what());
     99        LOG_ERROR("std::exception caught:" << e.what());
    100100    }
    101101    return false;
Note: See TracChangeset for help on using the changeset viewer.