logger.go 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. // Copyright (c) 2016 Uber Technologies, Inc.
  2. //
  3. // Permission is hereby granted, free of charge, to any person obtaining a copy
  4. // of this software and associated documentation files (the "Software"), to deal
  5. // in the Software without restriction, including without limitation the rights
  6. // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  7. // copies of the Software, and to permit persons to whom the Software is
  8. // furnished to do so, subject to the following conditions:
  9. //
  10. // The above copyright notice and this permission notice shall be included in
  11. // all copies or substantial portions of the Software.
  12. //
  13. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  14. // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  15. // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  16. // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  17. // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  18. // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  19. // THE SOFTWARE.
  20. package jaeger
  21. import "log"
  22. // NB This will be deprecated in 3.0.0, please use jaeger-client-go/log/logger instead.
  23. // Logger provides an abstract interface for logging from Reporters.
  24. // Applications can provide their own implementation of this interface to adapt
  25. // reporters logging to whatever logging library they prefer (stdlib log,
  26. // logrus, go-logging, etc).
  27. type Logger interface {
  28. // Error logs a message at error priority
  29. Error(msg string)
  30. // Infof logs a message at info priority
  31. Infof(msg string, args ...interface{})
  32. }
  33. // StdLogger is implementation of the Logger interface that delegates to default `log` package
  34. var StdLogger = &stdLogger{}
  35. type stdLogger struct{}
  36. func (l *stdLogger) Error(msg string) {
  37. log.Printf("ERROR: %s", msg)
  38. }
  39. // Infof logs a message at info priority
  40. func (l *stdLogger) Infof(msg string, args ...interface{}) {
  41. log.Printf(msg, args...)
  42. }
  43. // NullLogger is implementation of the Logger interface that delegates to default `log` package
  44. var NullLogger = &nullLogger{}
  45. type nullLogger struct{}
  46. func (l *nullLogger) Error(msg string) {}
  47. func (l *nullLogger) Infof(msg string, args ...interface{}) {}