refactor: Remove unnecessary logs

This commit is contained in:
TwiN 2022-12-15 20:59:04 -05:00
parent dfcea93080
commit be0962112e

View File

@ -161,12 +161,10 @@ func (config Config) GetAlertingProviderByAlertType(alertType alert.Type) provid
// SetAlertingProviderToNil Sets an alerting provider to nil to avoid having to revalidate it every time an
// alert of its corresponding type is sent.
func (config *Config) SetAlertingProviderToNil(p provider.AlertProvider) {
fmt.Println(config.GitHub)
entityType := reflect.TypeOf(config).Elem()
for i := 0; i < entityType.NumField(); i++ {
field := entityType.Field(i)
if field.Type == reflect.TypeOf(p) {
fmt.Println("Setting", field.Name, "to nil")
reflect.ValueOf(config).Elem().Field(i).Set(reflect.Zero(field.Type))
}
}