Skip to content

Commit

Permalink
Fix capitalization in log statement
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinSullivan1 committed Mar 14, 2018
1 parent 508ce2b commit bc59ad6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/log.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ func (s *Server) SetLogger(logger Logger, debugFlag, traceFlag bool) {
// test logger that may not implement that interface.
if l, ok := s.logging.logger.(io.Closer); ok {
if err := l.Close(); err != nil {
s.Noticef("error closing logger: %v", err)
s.Noticef("Error closing logger: %v", err)
}
}
}
Expand Down

0 comments on commit bc59ad6

Please sign in to comment.