Skip to content

Commit a38d402

Browse files
chore: migrate to pino 456 (#511)
* refactor: migrate logging to pino * fix: stabilize logging after rebase * chore: remove unused debug dependency * fix: stabilize coverage and integration checks * chore: add changeset for logging migration * refactor: enforce logger naming and no-console * test: add logger factory coverage * fix: address review comments for logging and tests
1 parent 22d971a commit a38d402

60 files changed

Lines changed: 1026 additions & 406 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"nostream": patch
3+
---
4+
5+
Migrate runtime logging to pino across adapters, services, workers, and controllers, and stabilize CI-related fixes for coverage and integration workflows after rebasing.

biome.json

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,24 @@
2424
"recommended": false,
2525
"correctness": { "noUnusedVariables": "error" },
2626
"style": { "useBlockStatements": "warn" },
27-
"suspicious": { "noExplicitAny": "off" }
27+
"suspicious": {
28+
"noExplicitAny": "off",
29+
"noConsole": "error"
30+
}
2831
}
2932
},
33+
"overrides": [
34+
{
35+
"includes": ["migrations/**", "src/clean-db.ts", "src/import-events.ts", "src/scripts/**", "test/**"],
36+
"linter": {
37+
"rules": {
38+
"suspicious": {
39+
"noConsole": "off"
40+
}
41+
}
42+
}
43+
}
44+
],
3045
"javascript": {
3146
"formatter": {
3247
"quoteStyle": "single",

0 commit comments

Comments
 (0)