From 5f3d2526cdcc30113b7e94b690b4c0c68d79b9b8 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Mon, 5 Jun 2023 11:39:16 -0400 Subject: [PATCH] fix: use tab instead of space for indentation --- debug.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/debug.go b/debug.go index ee7b84ef..1761fe32 100644 --- a/debug.go +++ b/debug.go @@ -62,8 +62,7 @@ func debugPrint(format string, values ...any) { if !strings.HasSuffix(format, "\n") { format += "\n" - } - + } fmt.Fprintf(DefaultWriter, "[GIN-debug] "+format, values...) }