dyFlush method

void dyFlush(
  1. LogType type
)

动态更新流

Implementation

void dyFlush(LogType type) {
  switch (type) {
    case LogType.print:
      flushPrint();
      break;
    case LogType.debug:
      flushDebug();
      break;
    default:
  }
}