Changeset 9587 in ntrip for trunk/BNC/src/orbComp
- Timestamp:
- Jan 7, 2022, 12:49:21 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/orbComp/sp3Comp.cpp
r9178 r9587 84 84 } 85 85 if (!_log) { 86 *_log << "ERROR: SP3Comp requires logfile specification" << endl;86 *_log << "ERROR: SP3Comp requires logfile specification" << Qt::endl; 87 87 goto exit; 88 88 } 89 89 90 90 for (int ii = 0; ii < _sp3FileNames.size(); ii++) { 91 *_log << "! SP3 File " << ii+1 << ": " << _sp3FileNames[ii] << endl;91 *_log << "! SP3 File " << ii+1 << ": " << _sp3FileNames[ii] << Qt::endl; 92 92 } 93 93 if (_sp3FileNames.size() != 2) { 94 *_log << "ERROR: sp3Comp requires two input SP3 files" << endl;94 *_log << "ERROR: sp3Comp requires two input SP3 files" << Qt::endl; 95 95 goto end; 96 96 } … … 102 102 } 103 103 catch (const string& error) { 104 *_log << "ERROR: " << error.c_str() << endl;104 *_log << "ERROR: " << error.c_str() << Qt::endl; 105 105 } 106 106 catch (const char* error) { 107 *_log << "ERROR: " << error << endl;107 *_log << "ERROR: " << error << Qt::endl; 108 108 } 109 109 catch (Exception& exc) { 110 *_log << "ERROR: " << exc.what() << endl;110 *_log << "ERROR: " << exc.what() << Qt::endl; 111 111 } 112 112 catch (std::exception& exc) { 113 *_log << "ERROR: " << exc.what() << endl;113 *_log << "ERROR: " << exc.what() << Qt::endl; 114 114 } 115 115 catch (QString error) { 116 *_log << "ERROR: " << error << endl;116 *_log << "ERROR: " << error << Qt::endl; 117 117 } 118 118 catch (...) { 119 *_log << "ERROR: " << "unknown exception" << endl;119 *_log << "ERROR: " << "unknown exception" << Qt::endl; 120 120 } 121 121
Note:
See TracChangeset
for help on using the changeset viewer.