Skip to content

Commit bf4bf0f

Browse files
authored
fix(blink): better formatting in structured logs (#208)
1 parent afe0c19 commit bf4bf0f

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

bun.lock

Lines changed: 5 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/blink/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "blink",
3-
"version": "1.1.38",
3+
"version": "1.1.39",
44
"description": "Blink is a tool for building and deploying AI agents.",
55
"type": "module",
66
"bin": {

packages/blink/src/agent/otel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ const patchGlobalConsole = () => {
5656
payload = { message: util.inspect(args[0]) };
5757
}
5858
} else {
59-
payload = { message: util.inspect(args) };
59+
payload = { message: util.format(...args) };
6060
}
6161

6262
let safePayload: Record<string | number, unknown>;

0 commit comments

Comments
 (0)