Skip to content

Commit 8e0cc41

Browse files
committed
Concurrency: clean up a log message (NFC)
This simply cleans up the logged message when debug tracing is enabled.
1 parent 9e78702 commit 8e0cc41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/public/Concurrency/Actor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1537,7 +1537,7 @@ static void swift_job_runImpl(Job *job, ExecutorRef executor) {
15371537
trackingInfo.enterAndShadow(executor);
15381538
auto traceHandle = concurrency::trace::job_run_begin(job, &executor);
15391539

1540-
SWIFT_TASK_DEBUG_LOG("%s(%p)", __func__, job);
1540+
SWIFT_TASK_DEBUG_LOG("job %p", job);
15411541
runJobInEstablishedExecutorContext(job);
15421542

15431543
concurrency::trace::job_run_end(&executor, traceHandle);

0 commit comments

Comments
 (0)