Skip to content

Commit fb31d00

Browse files
committed
reverted back info logs
1 parent 0035b41 commit fb31d00

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

lib/environment.cc

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,7 @@ void recursive_construct(Reactor* container) {
7575
}
7676

7777
void Environment::construct() {
78-
// phase_ = Phase::Assembly;
79-
80-
log::Info() << "Start Contruction of reactors";
78+
log::Debug() << "Start Contruction of reactors";
8179
for (auto* reactor : top_level_reactors_) {
8280
recursive_construct(reactor);
8381
}
@@ -100,7 +98,7 @@ void Environment::assemble() { // NOLINT(readability-function-cognitive-complexi
10098
// constructing all the reactors
10199
// this mainly tell the reactors that they should connect their ports and actions not ports and ports
102100

103-
log::Info() << "start assembly of reactors";
101+
log::Debug() << "start assembly of reactors";
104102
for (auto* reactor : top_level_reactors_) {
105103
recursive_assemble(reactor);
106104
}
@@ -361,7 +359,7 @@ auto Environment::startup(const TimePoint& start_time) -> std::thread {
361359

362360
validate(this->phase() == Phase::Indexing, "startup() may only be called during Indexing phase!");
363361

364-
log_.info() << "Starting the execution";
362+
log_.debug() << "Starting the execution";
365363
phase_ = Phase::Startup;
366364

367365
this->start_tag_ = Tag::from_physical_time(start_time);

0 commit comments

Comments
 (0)