update error/logging messages
Some checks failed
CI / Lint (push) Has been cancelled

This commit is contained in:
onyx-and-iris 2025-03-31 22:05:22 +01:00
parent 6b41418c00
commit 38b0611e4e
2 changed files with 10 additions and 10 deletions

View File

@ -1,17 +1,16 @@
// Package gignore provides functionality for handling template errors and registry operations.
// Package gignore provides a way to manage .gitignore files and templates.
package gignore
import (
"fmt"
"github.com/onyx-and-iris/gignore/internal/registry"
"strings"
)
type templateNotFoundError struct {
template string
registry *registry.TemplateRegistry
template string
templatesSearched []string
}
func (e *templateNotFoundError) Error() string {
return fmt.Sprintf("template '%s' not found in %s registry", e.template, e.registry.Directory)
return fmt.Sprintf("template '%s' not found in %s registry", e.template, strings.Join(e.templatesSearched, ", "))
}

View File

@ -42,22 +42,23 @@ func (c *Client) Create(template string) error {
return err
}
if !ok {
templateNotFoundErr := &templateNotFoundError{template, c.registry}
templateNotFoundErr := &templateNotFoundError{template, []string{c.registry.Directory}}
if c.registry.Directory == "gitignoreio" {
return templateNotFoundErr
}
log.Errorf("%s. Checking default registry...", templateNotFoundErr)
c.registry.Directory = "gitignoreio"
ok, err = c.registry.Contains(template)
if err != nil {
return err
}
if !ok {
templateNotFoundErr.templatesSearched = append(templateNotFoundErr.templatesSearched, c.registry.Directory)
return templateNotFoundErr
}
log.Infof("template '%s' found in default gitignoreio registry", template)
log.Debugf("template '%s' found in gitignoreio registry", template)
} else {
log.Debugf("template '%s' found in %s registry", template, c.registry.Directory)
}
content, err := c.registry.Get(template)