discard.go 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. // Copyright 2018 The etcd Authors
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. package logger
  15. import "log"
  16. // NewDiscardLogger returns a new Logger that discards everything except "fatal".
  17. func NewDiscardLogger() Logger { return &discardLogger{} }
  18. type discardLogger struct{}
  19. func (l *discardLogger) Info(args ...interface{}) {}
  20. func (l *discardLogger) Infoln(args ...interface{}) {}
  21. func (l *discardLogger) Infof(format string, args ...interface{}) {}
  22. func (l *discardLogger) Warning(args ...interface{}) {}
  23. func (l *discardLogger) Warningln(args ...interface{}) {}
  24. func (l *discardLogger) Warningf(format string, args ...interface{}) {}
  25. func (l *discardLogger) Error(args ...interface{}) {}
  26. func (l *discardLogger) Errorln(args ...interface{}) {}
  27. func (l *discardLogger) Errorf(format string, args ...interface{}) {}
  28. func (l *discardLogger) Fatal(args ...interface{}) { log.Fatal(args...) }
  29. func (l *discardLogger) Fatalln(args ...interface{}) { log.Fatalln(args...) }
  30. func (l *discardLogger) Fatalf(format string, args ...interface{}) { log.Fatalf(format, args...) }
  31. func (l *discardLogger) V(lvl int) bool {
  32. return false
  33. }