Skip to content

Commit

Permalink
fix(log): make flattenArgs() private (#4214)
Browse files Browse the repository at this point in the history
  • Loading branch information
iuioiua committed Jan 17, 2024
1 parent 175601a commit 53d27bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion log/formatters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export function jsonFormatter(logRecord: LogRecord): string {
});
}

export function flattenArgs(args: unknown[]): unknown {
function flattenArgs(args: unknown[]): unknown {
if (args.length === 1) {
return args[0];
} else if (args.length > 1) {
Expand Down

0 comments on commit 53d27bb

Please sign in to comment.