Commit 50aa8ba
Remove nil context fallback from libs/log (#4656)
## Summary
- Remove the `nil` context fallback from functions in `libs/log`
- Passing a nil context is an error; callers should always pass a valid
context
From https://pkg.go.dev/context:
> Do not pass a nil [Context](https://pkg.go.dev/context#Context), even
if a function permits it. Pass
[context.TODO](https://pkg.go.dev/context#TODO) if you are unsure about
which Context to use.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>1 parent 47d9694 commit 50aa8ba
2 files changed
+0
-6
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
27 | | - | |
28 | | - | |
29 | | - | |
30 | 27 | | |
31 | 28 | | |
32 | 29 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
37 | 37 | | |
38 | 38 | | |
39 | 39 | | |
40 | | - | |
41 | | - | |
42 | | - | |
43 | 40 | | |
44 | 41 | | |
45 | 42 | | |
| |||
0 commit comments