Skip to content

Commit

Permalink
resumable verbose up
Browse files Browse the repository at this point in the history
  • Loading branch information
Vadim Sadokhov committed Jul 19, 2023
1 parent 67d247d commit 01f1828
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/resumable.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ static void resumable_add_finished(int64_t resumable_id) {
finished_resumables_size *= 2;
}

tvkprintf(resumable, 2, "Resumable %" PRIi64 " put to position %" PRIu32 " of finished list\n", resumable_id, finished_resumables_count);
tvkprintf(resumable, 3, "Resumable %" PRIi64 " put to position %" PRIu32 " of finished list\n", resumable_id, finished_resumables_count);
finished_resumables[finished_resumables_count++] = resumable_id;
}

Expand Down Expand Up @@ -575,7 +575,7 @@ void run_scheduler(double dead_line_time) {
started_resumable_info *res = get_started_resumable_info(resumable_id);
php_assert(res->continuation == nullptr);

tvkprintf(resumable, 2, "Process %" PRIi64 "(%s) with parent %" PRIi64 " in scheduler\n",
tvkprintf(resumable, 3, "Process %" PRIi64 "(%s) with parent %" PRIi64 " in scheduler\n",
resumable_id, is_yielded ? "yielded" : "not yielded", res->parent_id);
int64_t parent_id = res->parent_id;
if (parent_id == 0) {
Expand Down

0 comments on commit 01f1828

Please sign in to comment.