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

Commit

Permalink
chore: update logging
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanFlurry committed Jul 4, 2024
1 parent 8c83495 commit 6f7aef2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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

0 comments on commit 6f7aef2

Please sign in to comment.