Ignore:
Timestamp:
Nov 23, 2009, 6:22:33 PM (16 years ago)
Author:
Frederik Heber <heber@…>
Children:
3d4969
Parents:
09d3b8
Message:

Verbosity corrected for ERROR and WARNING

  • present ERROR and WARNING prefixes removed and placed by eLog() and respective Verbosity().
  • -v... is scanned for number of 'v's and verbosity is set accordingly
  • standard verbosity is now 0.

Signed-off-by: Frederik Heber <heber@…>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/bond.cpp

    r09d3b8 r418117a  
    6363  if(rightatom == Atom)
    6464    return leftatom;
    65   eLog() << Verbose(0) << "Bond " << *this << " does not contain atom " << *Atom << "!" << endl;
     65  eLog() << Verbose(1) << "Bond " << *this << " does not contain atom " << *Atom << "!" << endl;
    6666  return NULL;
    6767};
     
    9999bool bond::MarkUsed(const enum Shading color) {
    100100  if (Used == black) {
    101     eLog() << Verbose(0) << "ERROR: Bond " << this << " was already marked black!." << endl;
     101    eLog() << Verbose(1) << "Bond " << this << " was already marked black!." << endl;
    102102    return false;
    103103  } else {
Note: See TracChangeset for help on using the changeset viewer.