e1.3.0 Config dependency update.

This commit is contained in:
2025-04-27 20:57:18 -04:00
parent 764caeb894
commit 7ce7158841
4 changed files with 16 additions and 10 deletions

View File

@ -5,7 +5,7 @@ import (
"strings"
)
// Config holds all logger configuration values, populated via config.UnmarshalSubtree
// Config holds all logger configuration values
type Config struct {
// Basic settings
Level int64 `toml:"level"`
@ -42,7 +42,7 @@ type Config struct {
HeartbeatIntervalS int64 `toml:"heartbeat_interval_s"` // Interval seconds for heartbeat
}
// defaultConfig is the single source of truth for all default values
// defaultConfig is the single source for all configurable default values
var defaultConfig = Config{
// Basic settings
Level: LevelInfo,