added in more debug to investigate

This commit is contained in:
2024-09-17 14:14:45 +01:00
parent d53c49ba56
commit 79e1afb3e1
3 changed files with 17 additions and 3 deletions
+2 -1
View File
@@ -140,7 +140,7 @@ export const createBlobSas = async (containerName, blobName) => {
export const createContainer = async (containerName) => {
const creds = new DefaultAzureCredential();
console.log(JSON.stringify(creds));
//containerName = containerName.toLowerCase();
//console.log(
@@ -159,6 +159,7 @@ export const createContainer = async (containerName) => {
const createContainerResponse = await containerClient
.createIfNotExists()
.then((data) => {
console.log(data);
return data;
})
.catch((error) => {