From 38b0611e4e7a81b0b51acc03d139ae2a267a3f5e Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Mon, 31 Mar 2025 22:05:22 +0100 Subject: [PATCH] update error/logging messages --- error.go | 11 +++++------ gignore.go | 9 +++++---- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/error.go b/error.go index 0cbd921..147fd04 100644 --- a/error.go +++ b/error.go @@ -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, ", ")) } diff --git a/gignore.go b/gignore.go index aca9602..8bcb056 100644 --- a/gignore.go +++ b/gignore.go @@ -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)