Changes in src/linkedcell.cpp [e138de:717e0c]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/linkedcell.cpp
re138de r717e0c 47 47 Log() << Verbose(1) << "Begin of LinkedCell" << endl; 48 48 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; 50 50 return; 51 51 } … … 79 79 Log() << Verbose(2) << "Allocating cells ... "; 80 80 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; 82 82 return; 83 83 } … … 122 122 Log() << Verbose(1) << "Begin of LinkedCell" << endl; 123 123 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; 125 125 return; 126 126 } … … 151 151 Log() << Verbose(2) << "Allocating cells ... "; 152 152 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; 154 154 return; 155 155 } … … 199 199 status = status && ((n[i] >=0) && (n[i] < N[i])); 200 200 if (!status) 201 eLog() << Verbose( 0) << "ERROR:indices are out of bounds!" << endl;201 eLog() << Verbose(1) << "indices are out of bounds!" << endl; 202 202 return status; 203 203 }; … … 260 260 return status; 261 261 } 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; 263 263 return false; 264 264 }
Note:
See TracChangeset
for help on using the changeset viewer.