getCurrentLogFilePath method

Future<String> getCurrentLogFilePath()

对外方法:获取当前日志文件路径(便于调试/导出)

Implementation

Future<String> getCurrentLogFilePath() async {
  final File logFile = await _getMainLogFile();
  return logFile.path;
}