Fix stringification for debug of taskError object if set

This commit is contained in:
Johannes Zellner
2022-08-08 13:12:53 +02:00
parent 02d95810a6
commit ace96bd228
+1 -1
View File
@@ -204,7 +204,7 @@ function startTask(id, options, callback) {
if (callback) callback(taskError, task ? task.result : null);
debug(`startTask: ${id} done. error: ${taskError}`);
debug(`startTask: ${id} done. error:`, taskError);
});
if (options.timeout) {