Skip to content

Commit

Permalink
fix logging output (#632)
Browse files Browse the repository at this point in the history
  • Loading branch information
gcampbell-msft committed Aug 5, 2024
1 parent 29a20d1 commit ae8cbef
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/make.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1020,7 +1020,11 @@ export async function postConfigure(triggeredBy: TriggeredBy): Promise<number> {
"Post-configure failed: no script provided."
);
vscode.window.showErrorMessage(error);
logger.message(error);
const loggerError = localize(
"no.post.configure.script.provided.logger",
"No post-configure script is set in settings. Make sure a post-configuration script path is defined with makefile.postConfigureScript."
);
logger.message(loggerError);
return ConfigureBuildReturnCodeTypes.notFound;
}

Expand Down

0 comments on commit ae8cbef

Please sign in to comment.