Skip to content

Commit dd4ae8d

Browse files
committed
Add more logging related to work items.
1 parent 8648860 commit dd4ae8d

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

robocorp-code/vscode-client/src/activities.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -873,6 +873,7 @@ export async function createRobot() {
873873
}
874874

875875
export async function updateLaunchEnvironment(args): Promise<{ [key: string]: string } | "cancelled"> {
876+
OUTPUT_CHANNEL.appendLine(`updateLaunchEnvironment for ${args["targetRobot"]}.`);
876877
let newEnv: any;
877878
try {
878879
newEnv = await updateLaunchEnvironmentPart0(args);
@@ -989,6 +990,7 @@ export async function updateLaunchEnvironmentPart0(args): Promise<{ [key: string
989990
);
990991

991992
if (!workItemsActionResult || !workItemsActionResult.success) {
993+
OUTPUT_CHANNEL.appendLine(`No work items available. ${JSON.stringify(workItemsActionResult)}`);
992994
return newEnv;
993995
}
994996

0 commit comments

Comments
 (0)