Sfoglia il codice sorgente

Merge pull request #44398 from thaJeztah/daemon_logger_godoc

daemon/logger: fix godoc
Sebastiaan van Stijn 2 anni fa
parent
commit
98f36bba9a
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      daemon/logger/logger.go

+ 1 - 1
daemon/logger/logger.go

@@ -87,7 +87,7 @@ type ReadConfig struct {
 
 
 // LogReader is the interface for reading log messages for loggers that support reading.
 // LogReader is the interface for reading log messages for loggers that support reading.
 type LogReader interface {
 type LogReader interface {
-	// Read logs from underlying logging backend
+	// ReadLogs reads logs from underlying logging backend.
 	ReadLogs(ReadConfig) *LogWatcher
 	ReadLogs(ReadConfig) *LogWatcher
 }
 }