File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -75,9 +75,7 @@ void recursive_construct(Reactor* container) {
7575}
7676
7777void 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);
You can’t perform that action at this time.
0 commit comments