Changeset 12620


Ignore:
Timestamp:
11/22/11 23:58:29 (13 years ago)
Author:
tbretz
Message:
Removed some stray endl in messages.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/EventBuilderWrapper.h

    r12617 r12620  
    580580            {
    581581                ostringstream str;
    582                 str << "runOpen - Missed run " << it->first << "." << endl;
     582                str << "runOpen - Missed run " << it->first << ".";
    583583                fMsg.Info(str);
    584584
     
    593593        {
    594594            ostringstream str;
    595             str << "runOpen - Run " << runid << " wasn't expected." << endl;
     595            str << "runOpen - Run " << runid << " wasn't expected.";
    596596            fMsg.Warn(str);
    597597        }
     
    10101010            {
    10111011                ostringstream str;
    1012                 str << "gotNewRun - Missed run " << *it << "." << endl;
     1012                str << "gotNewRun - Missed run " << *it << ".";
    10131013                fMsg.Info(str);
    10141014
     
    10231023        {
    10241024            ostringstream str;
    1025             str << "gotNewRun - Not waiting for run " << runnr << "." << endl;
     1025            str << "gotNewRun - Not waiting for run " << runnr << ".";
    10261026            fMsg.Warn(str);
    10271027            return;
     
    10321032        {
    10331033            ostringstream str;
    1034             str << "gotNewRun - Run " << runnr << " wasn't expected." << endl;
     1034            str << "gotNewRun - Run " << runnr << " wasn't expected.";
    10351035            fMsg.Warn(str);
    10361036            return;
Note: See TracChangeset for help on using the changeset viewer.