From bfd09365c6952c1146bd17d9e7b6972a1e390f9d Mon Sep 17 00:00:00 2001 From: Starttoaster Date: Tue, 18 Jun 2024 11:01:49 -0700 Subject: [PATCH] Try different indentation --- pkg/slogs/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/slogs/README.md b/pkg/slogs/README.md index 6883f78..0fdb5c4 100644 --- a/pkg/slogs/README.md +++ b/pkg/slogs/README.md @@ -13,13 +13,13 @@ import "github.com/chia-network/go-modules/pkg/slogs" func main() { // Init the logger with a log-level string (debug, info, warn, error) - // defaults to "info" if empty or unsupported string - slogs.Init("info") + // defaults to "info" if empty or unsupported string + slogs.Init("info") // Logs a hello world message at the info level slogs.Logger.Info("hello world") - // Logs an error message at the error level + // Logs an error message at the error level slogs.Logger.Error("we received an error") } ```