From 384b9efba01712f11389e2e53a84ff423b3b19ef Mon Sep 17 00:00:00 2001 From: b-dulaney Date: Sun, 24 Mar 2024 22:59:31 -0600 Subject: [PATCH] chore: swap to debugger logs for chromedp --- scraping.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scraping.go b/scraping.go index 3354c22..ea1104b 100644 --- a/scraping.go +++ b/scraping.go @@ -197,7 +197,7 @@ func scrapeResortData(configPath *string) (success bool) { "updated_at": time.Now(), } - ctx, cancel := chromedp.NewContext(context.Background(), chromedp.WithLogf(log.Printf)) + ctx, cancel := chromedp.NewContext(context.Background(), chromedp.WithDebugf(log.Printf)) defer cancel()