dyFlush method
动态更新流
Implementation
void dyFlush(LogType type) {
switch (type) {
case LogType.print:
flushPrint();
break;
case LogType.debug:
flushDebug();
break;
default:
}
}
动态更新流
void dyFlush(LogType type) {
switch (type) {
case LogType.print:
flushPrint();
break;
case LogType.debug:
flushDebug();
break;
default:
}
}