internal: remove hlog
All checks were successful
Test / Create distribution (push) Successful in 1m11s
Test / Sandbox (push) Successful in 2m37s
Test / Hpkg (push) Successful in 4m41s
Test / Sandbox (race detector) (push) Successful in 4m53s
Test / Hakurei (race detector) (push) Successful in 5m53s
Test / Hakurei (push) Successful in 2m44s
Test / Flake checks (push) Successful in 1m48s

This package has been fully replaced by container.Msg.

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2025-09-29 06:21:04 +09:00
parent 46cd3a28c8
commit dc467493d8
3 changed files with 0 additions and 67 deletions

View File

@@ -1,23 +0,0 @@
package hlog
import (
"log"
"sync/atomic"
)
var verbose = new(atomic.Bool)
func Load() bool { return verbose.Load() }
func Store(v bool) { verbose.Store(v) }
func Verbosef(format string, v ...any) {
if verbose.Load() {
log.Printf(format, v...)
}
}
func Verbose(v ...any) {
if verbose.Load() {
log.Println(v...)
}
}