logging/factory.go

Summary

Maintainability
A
0 mins
Test Coverage

exported function NewLoggerFactory should have comment or be unexported
Open

func NewLoggerFactory(logProcessor Processor, fileFactory FileFactory) *LoggerFactory {
Severity: Minor
Found in logging/factory.go by golint

exported type LoggerFactory should have comment or be unexported
Open

    LoggerFactory struct {
Severity: Minor
Found in logging/factory.go by golint

exported method LoggerFactory.Logger should have comment or be unexported
Open

func (f *LoggerFactory) Logger(prefix string, writePrefix bool) (Logger, error) {
Severity: Minor
Found in logging/factory.go by golint

exported type FileFactory should have comment or be unexported
Open

    FileFactory func(prefix string) (io.WriteCloser, io.WriteCloser, error)
Severity: Minor
Found in logging/factory.go by golint

There are no issues that match your filters.

Category
Status