Add extra debuging

This commit is contained in:
Foil-hat-guy 2025-05-08 11:26:47 +03:00
parent 7efb404960
commit e835556903
No known key found for this signature in database
GPG key ID: 221CC305A7B23591

View file

@ -35,7 +35,9 @@ func filterNilErrors(errs []error) (notNilErrs []error) {
} }
func Join(errs ...error) (result error) { func Join(errs ...error) (result error) {
fmt.Println(errs)
errs = filterNilErrors(errs) errs = filterNilErrors(errs)
fmt.Println(errs)
if len(errs) == 0 { if len(errs) == 0 {
return nil return nil
} }