Skip to content

Commit

Permalink
fix(logger): fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Feb 10, 2025
1 parent 8af9f48 commit 0a68035
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/logger/src/utils.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: Apache-2.0
import { LogLevel, type LogLevelName } from "./api";
import { LogLevel, type LogLevelName } from "./api.js";

export const expandArgs = (args: any[]) =>
args.map((x) => (typeof x === "function" ? x() : x));
Expand Down

0 comments on commit 0a68035

Please sign in to comment.