Skip to content

Commit

Permalink
Fix TS error (#622)
Browse files Browse the repository at this point in the history
  • Loading branch information
bvaughn authored Jul 10, 2024
1 parent 9c54459 commit 2f6bf31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/shared/src/recording/metadata/sanitizeMetadata.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export async function sanitizeMetadata(metadata: UnstructuredMetadata, opts: Opt
for (const [key, value] of Object.entries(metadata)) {
if (typeof value !== "object") {
if (opts.verbose) {
logger.log(
console.log(
`Ignoring metadata key "${key}". Expected an object but received ${typeof value}`
);
}
Expand Down

0 comments on commit 2f6bf31

Please sign in to comment.