diff options
Diffstat (limited to 'internal/easyhttp/easyhttp.go')
| -rw-r--r-- | internal/easyhttp/easyhttp.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/easyhttp/easyhttp.go b/internal/easyhttp/easyhttp.go index 2968454..3f4b367 100644 --- a/internal/easyhttp/easyhttp.go +++ b/internal/easyhttp/easyhttp.go @@ -40,6 +40,7 @@ func Get(ctx context.Context, uri, apiKey string) ([]byte, error) { // Get data from JSON func GetData[T any](ctx context.Context, uri, apiKey string, data *T) error { + log.Println("Getting data from ", uri) bytes, err := Get(ctx, uri, apiKey) if err != nil { return err |
