Update util.ts

This commit is contained in:
Daniel Hougaard
2024-09-23 19:22:17 +04:00
parent f0e1ce0d95
commit 33986fffab

View File

@@ -28,7 +28,8 @@ export const getAwsRegion = async () => {
return identityResponse.data.region;
} catch (e) {
throw new Error("Failed to retrieve AWS region");
console.error("Failed to retrieve AWS region");
throw e;
}
};