Skip to content

Commit 69db737

Browse files
committed
pfasst: Use Controller logger.
Signed-off-by: Matthew Emmett <[email protected]>
1 parent f2d1b83 commit 69db737

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pfasst/controller/pfasst_impl.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ namespace pfasst
4747
int nblocks = int(this->get_end_time() / this->get_time_step()) / comm->size();
4848

4949
if (nblocks == 0) {
50-
LOG(INFO) << "invalid duration: there are more time processors than time steps";
50+
CLOG(INFO, "Controller") << "invalid duration: there are more time processors than time steps";
5151
throw ValueError("invalid duration: there are more time processors than time steps");
5252
}
5353

5454
if (nblocks * comm->size() * this->get_time_step() < this->get_end_time()) {
55-
LOG(INFO) << "invalid duration: mismatch between number of time processors and time steps";
55+
CLOG(INFO, "Controller") << "invalid duration: mismatch between number of time processors and time steps";
5656
throw ValueError("invalid duration: mismatch between number of time processors and time steps");
5757
}
5858

0 commit comments

Comments
 (0)