network/pkg/config/logging_config.go
2026-01-20 10:03:55 +02:00

9 lines
279 B
Go

package config
// LoggingConfig contains logging configuration
type LoggingConfig struct {
Level string `yaml:"level"` // debug, info, warn, error
Format string `yaml:"format"` // json, console
OutputFile string `yaml:"output_file"` // Empty for stdout
}