|
|
@@ -22,6 +22,7 @@ func DefaultConfig() *Config {
|
|
|
CarbonEstimatesEnabled: env.IsCarbonEstimatesEnabled(),
|
|
|
CloudCostEnabled: env.IsCloudCostEnabled(),
|
|
|
MCPServerEnabled: env.IsMCPServerEnabled(),
|
|
|
+ CustomCostEnabled: env.IsCustomCostEnabled(),
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@@ -31,4 +32,5 @@ func (c *Config) log() {
|
|
|
log.Infof("Cloud Costs enabled: %t", c.CloudCostEnabled)
|
|
|
log.Infof("Custom Costs enabled: %t", c.CustomCostEnabled)
|
|
|
log.Infof("MCP Server enabled: %t", c.MCPServerEnabled)
|
|
|
+ log.Infof("Custom Costs enabled: %t", c.CustomCostEnabled)
|
|
|
}
|