diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-04-19 17:50:12 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-04-19 17:50:12 +0900 |
| commit | 8ee53a51640f7f53e7877a809b6817cb646a5d39 (patch) | |
| tree | 0d4ae4d6109ac4064bb19753a8a751ed70d8bcd9 | |
| parent | 3981d44757ea8ebbd8256a5eb77af2ba7c481e19 (diff) | |
internal/rosa: use builtin for checksum warning
This avoids having to configure the logger early.
Signed-off-by: Ophestra <cat@gensokyo.uk>
| -rw-r--r-- | internal/rosa/rosa.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/internal/rosa/rosa.go b/internal/rosa/rosa.go index 8f664f7d..5179f7a3 100644 --- a/internal/rosa/rosa.go +++ b/internal/rosa/rosa.go @@ -3,7 +3,6 @@ package rosa import ( "errors" - "log" "path" "runtime" "slices" @@ -28,7 +27,7 @@ const ( func mustDecode(s string) pkg.Checksum { var fallback = pkg.Checksum{} if s == "" { - log.Println( + println( "falling back to", pkg.Encode(fallback), "for unpopulated checksum", |
