TASK22269: normalize touched azurestorage logging calls

This commit is contained in:
2026-03-26 11:15:33 +00:00
parent 9791270670
commit 427e1c4673
2 changed files with 36 additions and 3 deletions
+3 -3
View File
@@ -1299,7 +1299,7 @@ export const getProgressBlobs = async (containerName, caseReference) => {
const blobPathParts = blob.name.split("/");
const appealBlobName = blobPathParts[1];
console.log("getProgressBlobs in here", blobPathParts);
consoleLogger("getProgressBlobs in here", blobPathParts);
blobObj.push({
"name": appealBlobName,
"path": blob.name,
@@ -1483,7 +1483,7 @@ export const getRepsFilesBlobs = async (
.split("/")[2]
.slice(0, blob.name.split("/")[2].indexOf("_"));
console.log(blob.name);
consoleLogger(blob.name);
blobObj.push({
"name": repFileName,
@@ -1514,7 +1514,7 @@ export const getRepsFilesBlobs = async (
repFileName
});
}
console.log("blobObj:", blobObj);
consoleLogger("blobObj:", blobObj);
return blobObj;
};