From 740e129505aa95b0bc9d4960658920cf02883e03 Mon Sep 17 00:00:00 2001 From: Roman Khafizianov Date: Thu, 22 Jun 2023 16:26:09 +0200 Subject: [PATCH] fix typo --- app/app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.go b/app/app.go index 2bd265a4..f9d1d654 100644 --- a/app/app.go +++ b/app/app.go @@ -50,7 +50,7 @@ type ComponentRunnable interface { } type ComponentLogFieldsGetter interface { - // GetLogFields returns additional useful fields for logs to debug log app start time or something else in the future + // GetLogFields returns additional useful fields for logs to debug long app start/stop duration or something else in the future // You don't need to provide the component name in the field's Key, because it will be added automatically GetLogFields() []zap.Field }