Skip to content

Commit 7f9598f

Browse files
Denys Smirnovkuba--
authored andcommitted
set info log level for parse requests (#328)
Signed-off-by: Denys Smirnov <denys@sourced.tech>
1 parent ccbcd3d commit 7f9598f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

daemon/service.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ func (s *ServiceV2) logResponse(err error, filename, language, content string, e
199199
if err != nil {
200200
l.Errorf(err, "%s", text)
201201
} else {
202-
l.Debugf("%s", text)
202+
l.Infof("%s", text)
203203
}
204204
}
205205

@@ -351,7 +351,7 @@ func (d *Service) logResponse(s protocol1.Status, filename, language, content st
351351

352352
switch s {
353353
case protocol1.Ok:
354-
l.Debugf("%s", text)
354+
l.Infof("%s", text)
355355
case protocol1.Error:
356356
l.Warningf("%s", text)
357357
case protocol1.Fatal:

0 commit comments

Comments
 (0)