diff options
author | Damian Gryski <[email protected]> | 2023-04-17 10:52:16 -0700 |
---|---|---|
committer | Ron Evans <[email protected]> | 2023-04-22 10:01:02 +0200 |
commit | 06e34caa5fa527b8795fc6d72365158ad6f44e17 (patch) | |
tree | 070f3fc6a2be51b3769392ca8a9485489add8063 /builder | |
parent | 4e9f9e27731a07e665007def34680d20ef31b5c8 (diff) | |
download | tinygo-06e34caa5fa527b8795fc6d72365158ad6f44e17.tar.gz tinygo-06e34caa5fa527b8795fc6d72365158ad6f44e17.zip |
builder: print the status of the job that just completed
Diffstat (limited to 'builder')
-rw-r--r-- | builder/jobs.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builder/jobs.go b/builder/jobs.go index 3d5109749..a23d07534 100644 --- a/builder/jobs.go +++ b/builder/jobs.go @@ -134,7 +134,7 @@ func runJobs(job *compileJob, sema chan struct{}) error { numRunningJobs-- <-sema if jobRunnerDebug { - fmt.Println("## finished:", job.description, "(time "+job.duration.String()+")") + fmt.Println("## finished:", completed.description, "(time "+completed.duration.String()+")") } if completed.err != nil { // Wait for any current jobs to finish. |