Skip to content

Commit 7ca4f30

Browse files
authored
[Perf] Remove debug logging from listBlobs (Azure#14115)
1 parent 238584a commit 7ca4f30

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

sdk/storage/perf-tests/storage-blob-track-1/test/listBlobs.spec.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,9 @@ export class StorageBlobListTest extends StorageBlobTest<StorageBlobListTestOpti
2222
public async globalSetup() {
2323
await super.globalSetup();
2424
await executeParallel(
25-
async (count: number, parallelIndex: number) => {
25+
async (_count: number, _parallelIndex: number) => {
2626
const blockBlobClient = BlockBlobURL.fromContainerURL(this.containerClient, generateUuid());
2727
blockBlobClient.upload(Aborter.none, Buffer.alloc(0), 0);
28-
console.log(`[` + parallelIndex + `] ` + count);
2928
},
3029
this.parsedOptions.count.value!,
3130
32

sdk/storage/perf-tests/storage-blob/test/listBlobs.spec.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,8 @@ export class StorageBlobListTest extends StorageBlobTest<StorageBlobListTestOpti
2121
public async globalSetup() {
2222
await super.globalSetup();
2323
await executeParallel(
24-
async (count: number, parallelIndex: number) => {
24+
async (_count: number, _parallelIndex: number) => {
2525
await this.containerClient.uploadBlockBlob(generateUuid(), Buffer.alloc(0), 0);
26-
console.log(`[` + parallelIndex + `] ` + count);
2726
},
2827
this.parsedOptions.count.value!,
2928
32

0 commit comments

Comments
 (0)