From 15e4988b9c5ea586218418c9b21d0bd9c37ec395 Mon Sep 17 00:00:00 2001 From: Adam Gordon Bell Date: Tue, 21 May 2024 10:06:51 -0400 Subject: [PATCH] Automated code changes (#828) Co-authored-by: GitHub Actions Bot --- blog/_posts/2024-04-18-golang-dlv.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/blog/_posts/2024-04-18-golang-dlv.md b/blog/_posts/2024-04-18-golang-dlv.md index 0d6960195..859c60119 100644 --- a/blog/_posts/2024-04-18-golang-dlv.md +++ b/blog/_posts/2024-04-18-golang-dlv.md @@ -7,7 +7,11 @@ author: Adam internal-links: - just an example +excerpt: | + Delve is a CLI-based debugger for Go that allows you to set breakpoints, inspect goroutines, and manipulate variables in real-time. It supports remote debugging and seamlessly integrates with major IDEs like Visual Studio Code. --- +**This article explores the use of Delve for effective Go debugging. Earthly streamlines and enhances Go build processes. [Check it out](https://cloud.earthly.dev/login).** + Delve (`dlv`) is a CLI-based debugger for Go, tailored to the language's concurrency model and runtime. It allows you to set breakpoints, inspect goroutines, and evaluate and manipulate variables in real-time. Delve supports remote debugging and seamlessly integrates with major IDEs, including Visual Studio Code. Let me walk you through using it, but first, some background. ## Background