Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/linkedcell.cpp

    re138de r717e0c  
    4747  Log() << Verbose(1) << "Begin of LinkedCell" << endl;
    4848  if (set->IsEmpty()) {
    49     eLog() << Verbose(0) << "ERROR: set contains no linked cell nodes!" << endl;
     49    eLog() << Verbose(1) << "set contains no linked cell nodes!" << endl;
    5050    return;
    5151  }
     
    7979  Log() << Verbose(2) << "Allocating cells ... ";
    8080  if (LC != NULL) {
    81     Log() << Verbose(1) << "ERROR: Linked Cell list is already allocated, I do nothing." << endl;
     81    eLog() << Verbose(1) << "Linked Cell list is already allocated, I do nothing." << endl;
    8282    return;
    8383  }
     
    122122  Log() << Verbose(1) << "Begin of LinkedCell" << endl;
    123123  if (set->empty()) {
    124     eLog() << Verbose(0) << "ERROR: set contains no linked cell nodes!" << endl;
     124    eLog() << Verbose(1) << "set contains no linked cell nodes!" << endl;
    125125    return;
    126126  }
     
    151151  Log() << Verbose(2) << "Allocating cells ... ";
    152152  if (LC != NULL) {
    153     Log() << Verbose(1) << "ERROR: Linked Cell list is already allocated, I do nothing." << endl;
     153    eLog() << Verbose(1) << "Linked Cell list is already allocated, I do nothing." << endl;
    154154    return;
    155155  }
     
    199199    status = status && ((n[i] >=0) && (n[i] < N[i]));
    200200  if (!status)
    201   eLog() << Verbose(0) << "ERROR: indices are out of bounds!" << endl;
     201  eLog() << Verbose(1) << "indices are out of bounds!" << endl;
    202202  return status;
    203203};
     
    260260    return status;
    261261  } else {
    262     eLog() << Verbose(1) << "ERROR: Node at " << *Walker << " is out of bounds." << endl;
     262    eLog() << Verbose(1) << "Node at " << *Walker << " is out of bounds." << endl;
    263263    return false;
    264264  }
Note: See TracChangeset for help on using the changeset viewer.