Skip to content

Commit

Permalink
Task scheduler: log at TRACE, instead of DEBUG (#1115)
Browse files Browse the repository at this point in the history
  • Loading branch information
graebm authored May 14, 2024
1 parent 36a716e commit 6ebf3bc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/task_scheduler.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const char *aws_task_status_to_c_str(enum aws_task_status status) {

void aws_task_run(struct aws_task *task, enum aws_task_status status) {
AWS_ASSERT(task->fn);
AWS_LOGF_DEBUG(
AWS_LOGF_TRACE(
AWS_LS_COMMON_TASK_SCHEDULER,
"id=%p: Running %s task with %s status",
(void *)task,
Expand Down Expand Up @@ -129,7 +129,7 @@ void aws_task_scheduler_schedule_now(struct aws_task_scheduler *scheduler, struc
AWS_ASSERT(task);
AWS_ASSERT(task->fn);

AWS_LOGF_DEBUG(
AWS_LOGF_TRACE(
AWS_LS_COMMON_TASK_SCHEDULER,
"id=%p: Scheduling %s task for immediate execution",
(void *)task,
Expand All @@ -152,7 +152,7 @@ void aws_task_scheduler_schedule_future(
AWS_ASSERT(task);
AWS_ASSERT(task->fn);

AWS_LOGF_DEBUG(
AWS_LOGF_TRACE(
AWS_LS_COMMON_TASK_SCHEDULER,
"id=%p: Scheduling %s task for future execution at time %" PRIu64,
(void *)task,
Expand Down

0 comments on commit 6ebf3bc

Please sign in to comment.