Skip to content
This repository was archived by the owner on Sep 17, 2024. It is now read-only.

Commit 6f7aef2

Browse files
committed
chore: update logging
1 parent 8c83495 commit 6f7aef2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

modules/uploads/tests/e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { getS3EnvConfig } from "../utils/env.ts";
88

99
test("e2e", async (ctx: TestContext) => {
1010
if (!getS3EnvConfig()) {
11-
console.warn("S3 not configured");
11+
ctx.log.warn("s3 not configured");
1212
return;
1313
}
1414

modules/uploads/tests/multipart.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ function randomBuffer(size: number): Uint8Array {
2020

2121
test("multipart uploads", async (ctx: TestContext) => {
2222
if (!getS3EnvConfig()) {
23-
console.warn("S3 not configured");
23+
ctx.log.warn("s3 not configured");
2424
return;
2525
}
2626

0 commit comments

Comments
 (0)