Add debugging
This commit is contained in:
@@ -169,8 +169,10 @@ export default class ComponentDetection {
|
||||
|
||||
return downloadURL;
|
||||
} catch (error: any) {
|
||||
core.error(error);
|
||||
throw new Error("Failed to download latest release");
|
||||
core.error(error);
|
||||
core.debug(error.message);
|
||||
core.debug(error.stack);
|
||||
throw new Error("Failed to download latest release");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+2
@@ -24994,6 +24994,8 @@ class ComponentDetection {
|
||||
}
|
||||
catch (error) {
|
||||
core.error(error);
|
||||
core.debug(error.message);
|
||||
core.debug(error.stack);
|
||||
throw new Error("Failed to download latest release");
|
||||
}
|
||||
});
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user