config.dart 267 B

1234567891011121314151617
  1. /// IJKPlayer Config
  2. class IjkConfig {
  3. /// when [isLog] is true, will print log in console
  4. static bool isLog = false;
  5. static LogLevel level = LogLevel.debug;
  6. static String logTag = "Ijk";
  7. }
  8. enum LogLevel {
  9. verbose,
  10. debug,
  11. info,
  12. warning,
  13. error,
  14. }