remove the ignored debug

This commit is contained in:
Girish Ramakrishnan
2025-07-17 09:36:43 +02:00
parent 6364ea8e57
commit 38032f0b77

View File

@@ -184,7 +184,7 @@ async function startTask(id, options) {
const [sudoError] = await safe(shell.sudo([ START_TASK_CMD, id, logFile, options.nice || 0, options.memoryLimit || 400, options.oomScoreAdjust || 0 ], sudoOptions));
const code = sudoError ? sudoError.code : 0;
debug(`startTask: ${id} completed with code ${code}. ignored: ${!gTasks[id]}`);
debug(`startTask: ${id} completed with code ${code} ${!gTasks[id] ? '. this will be ignored' : ''}`);
if (options.timeout) clearTimeout(killTimerId);