We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8648860 commit dd4ae8dCopy full SHA for dd4ae8d
1 file changed
robocorp-code/vscode-client/src/activities.ts
@@ -873,6 +873,7 @@ export async function createRobot() {
873
}
874
875
export async function updateLaunchEnvironment(args): Promise<{ [key: string]: string } | "cancelled"> {
876
+ OUTPUT_CHANNEL.appendLine(`updateLaunchEnvironment for ${args["targetRobot"]}.`);
877
let newEnv: any;
878
try {
879
newEnv = await updateLaunchEnvironmentPart0(args);
@@ -989,6 +990,7 @@ export async function updateLaunchEnvironmentPart0(args): Promise<{ [key: string
989
990
);
991
992
if (!workItemsActionResult || !workItemsActionResult.success) {
993
+ OUTPUT_CHANNEL.appendLine(`No work items available. ${JSON.stringify(workItemsActionResult)}`);
994
return newEnv;
995
996
0 commit comments