mconnect - KDE Connect protocol implementation in Vala/C
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
662 B

  1. package logger
  2. type Logger interface {
  3. Debug(args ...interface{})
  4. Debugf(format string, args ...interface{})
  5. Debugln(args ...interface{})
  6. Info(args ...interface{})
  7. Infof(format string, args ...interface{})
  8. Infoln(args ...interface{})
  9. Error(args ...interface{})
  10. Errorf(format string, args ...interface{})
  11. Errorln(args ...interface{})
  12. Warning(args ...interface{})
  13. Warningf(format string, args ...interface{})
  14. Warningln(args ...interface{})
  15. Panic(args ...interface{})
  16. Panicf(format string, args ...interface{})
  17. Panicln(args ...interface{})
  18. Print(args ...interface{})
  19. Printf(format string, args ...interface{})
  20. Println(args ...interface{})
  21. }