Skip to content

Commit 9a02bc0

Browse files
committed
actually log stuff
1 parent b405425 commit 9a02bc0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

packages/hub/src/utils/XetBlob.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,9 @@ interface ChunkHeader {
8181

8282
const CHUNK_HEADER_BYTES = 8;
8383

84-
// eslint-disable-next-line @typescript-eslint/no-unused-vars
85-
const log = (...args: unknown[]) => {};
84+
const log = (...args: unknown[]) => {
85+
console.log(...args);
86+
};
8687

8788
/**
8889
* XetBlob is a blob implementation that fetches data directly from the Xet storage

0 commit comments

Comments
 (0)