Skip to content

Commit

Permalink
Fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerrit0 committed Jun 9, 2024
1 parent 3c78e8c commit a463e5c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lib/converter/converter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -645,8 +645,9 @@ export class Converter extends ChildableComponent<
childFile = new MinimalSourceFile(readFile(absPath), absPath);
} catch (error: any) {
this.application.logger.error(
this.application.logger.i18n.failed_to_read_0_when_processing_project_document(
this.application.logger.i18n.failed_to_read_0_when_processing_document_child_in_1(
path,
nicePath(file.fileName),
),
);
continue;
Expand Down

0 comments on commit a463e5c

Please sign in to comment.