Remove accidentally-checked-in debug print

This commit is contained in:
2024-10-28 16:20:51 -07:00
parent 2706b2f65e
commit b8fefff3ba

View File

@@ -4093,17 +4093,11 @@ struct Context {
}; };
PRESERVE_NONE void keepGoing(Job *job, Context *context) { PRESERVE_NONE void keepGoing(Job *job, Context *context) {
fprintf(stderr, "search path: %s, Remaining: %s\n",
getSearchPathPrintable(job->n).c_str(),
printable(job->remaining).c_str());
job = job->next; job = job->next;
MUSTTAIL return job->continuation(job, context); MUSTTAIL return job->continuation(job, context);
} }
PRESERVE_NONE void complete(Job *job, Context *context) { PRESERVE_NONE void complete(Job *job, Context *context) {
fprintf(stderr, "search path: %s, Remaining: %s\n",
getSearchPathPrintable(job->n).c_str(),
printable(job->remaining).c_str());
if (context->started == context->count) { if (context->started == context->count) {
if (job->prev == job) { if (job->prev == job) {
return; return;