Initialise object even if evaluator log paths were omitted

This commit is contained in:
Asger F
2024-11-13 13:30:38 +01:00
parent e146e7a314
commit fa3e3ff669

View File

@@ -200,7 +200,13 @@ export class LocalQueryInfo {
private cancellationSource?: CancellationTokenSource, // used to cancel in progress queries
public failureReason?: string,
public completedQuery?: CompletedQueryInfo,
public evalutorLogPaths?: EvaluatorLogPaths,
public evalutorLogPaths: EvaluatorLogPaths = {
log: undefined,
humanReadableSummary: undefined,
endSummary: undefined,
jsonSummary: undefined,
summarySymbols: undefined,
},
) {
/**/
}