Skip to content

Commit

Permalink
Update Error logging
Browse files Browse the repository at this point in the history
  • Loading branch information
ccastrotrejo committed Jun 7, 2024
1 parent d3d7f10 commit cfe2863
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ async function setupWizardScriptContext(context: IActionContext, projectRoot: vs
scriptContext.projectPath = parentDirPath;
return scriptContext;
} catch (error) {
const errorMessage = localize('executeAzureWizardError', 'Error in setupWizardScriptContext', error.message ?? error);
const errorMessage = localize('setupWizardScriptContextError', 'Error in setupWizardScriptContext: {0}', error.message ?? error);
ext.outputChannel.appendLog(errorMessage);
throw new Error(errorMessage);
}
Expand Down

0 comments on commit cfe2863

Please sign in to comment.