type Config struct {
Level string// Logging level (e.g., "info", "debug", "error") Format string// Logging format ("text" or "json") ReportCaller bool// Whether to include the calling method/file in the logs}
Config Struct that holds logging configuration options.