Skip to content

Commit

Permalink
Corrected format
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian Robledo Mejia committed Mar 21, 2024
1 parent 20be4b1 commit 65ba45d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions lib/scheduler.cc
Original file line number Diff line number Diff line change
Expand Up @@ -461,10 +461,9 @@ void Scheduler::schedule_sync(BaseAction* action, const Tag& tag) {
log_.debug() << "Schedule action " << action->fqn() << (action->is_logical() ? " synchronously " : " asynchronously ")
<< " with tag " << tag;
reactor_assert(logical_time_ < tag);
if(action->container()){
if (action->container() != 0) {
tracepoint(reactor_cpp, schedule_action, action->container()->fqn(), action->name(), tag);
}
else{
} else {
tracepoint(reactor_cpp, schedule_action, action->environment()->name(), action->name(), tag);
}
Statistics::increment_scheduled_actions();
Expand Down

0 comments on commit 65ba45d

Please sign in to comment.