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

chore: update logging #126

Merged
merged 1 commit into from
Jul 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/uploads/tests/e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { getS3EnvConfig } from "../utils/env.ts";

test("e2e", async (ctx: TestContext) => {
if (!getS3EnvConfig()) {
console.warn("S3 not configured");
ctx.log.warn("s3 not configured");
return;
}

Expand Down
2 changes: 1 addition & 1 deletion modules/uploads/tests/multipart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function randomBuffer(size: number): Uint8Array {

test("multipart uploads", async (ctx: TestContext) => {
if (!getS3EnvConfig()) {
console.warn("S3 not configured");
ctx.log.warn("s3 not configured");
return;
}

Expand Down
Loading