Skip to content

Commit

Permalink
make linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
dmachard committed Feb 29, 2024
1 parent c546cc3 commit 2f2c10a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions loggers/devnull.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,11 @@ func (so *DevNull) ReloadConfig(config *pkgconfig.Config) {
}

func (so *DevNull) LogInfo(msg string, v ...interface{}) {
so.logger.Info(pkgutils.PrefixLogLogger+"["+so.name+"] stdout - "+msg, v...)
so.logger.Info(pkgutils.PrefixLogLogger+"["+so.name+"] devnull - "+msg, v...)
}

func (so *DevNull) LogError(msg string, v ...interface{}) {
so.logger.Error(pkgutils.PrefixLogLogger+"["+so.name+"] stdout - "+msg, v...)
so.logger.Error(pkgutils.PrefixLogLogger+"["+so.name+"] devnull - "+msg, v...)
}

func (so *DevNull) GetInputChannel() chan dnsutils.DNSMessage {
Expand Down

0 comments on commit 2f2c10a

Please sign in to comment.