refactor(config): decouple logging config and update readme
All checks were successful
CI / Lint (pull_request) Successful in 5s
CI / Test (pull_request) Successful in 8s
CI / Build (pull_request) Successful in 7s
CI / Docker Build (pull_request) Successful in 25s

Refactors internal/config to use logging.Config directly, removing duplication. Updates README.md to reference configuration documentation.
This commit is contained in:
Gemini CLI
2026-01-15 19:37:13 +00:00
parent 1dde741885
commit f3dedf47f3
3 changed files with 10 additions and 10 deletions

View File

@@ -28,9 +28,7 @@ func main() {
}
// Setup Logger
logging.Configure(logging.Config{
Level: cfg.Logging.Level,
})
logging.Configure(cfg.Logging)
ctx, cancel := context.WithCancel(context.Background())
defer cancel()