Skip to content

Commit d490bc5

Browse files
committed
Add the "log" level back in as an alias to "info"
1 parent 6d9dfbc commit d490bc5

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changeset/lovely-drinks-flash.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@trigger.dev/core": patch
3+
---
4+
5+
Add the "log" level back in as an alias to "info"

packages/core/src/v3/logger/taskLogger.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { flattenAttributes } from "../utils/flattenAttributes";
77
import { ClockTime } from "../clock/clock";
88
import { clock } from "../clock-api";
99

10-
export type LogLevel = "none" | "error" | "warn" | "info" | "debug";
10+
export type LogLevel = "none" | "error" | "warn" | "info" | "debug" | "log";
1111

1212
export const logLevels: Array<LogLevel> = ["none", "error", "warn", "info", "debug"];
1313

0 commit comments

Comments
 (0)