React native插件项目iOS中讯飞报错Assertion failed: (severity >= 0 && severity < NUM_SEVERITIES), function SetLogDestination
https://github.com/zphhhhh/react-native-speech-iflytek/issues/36
描述:
[IFlySpeechUtility createUtility:initString]的时候报错:
Assertion failed: (severity >= 0 && severity < NUM_SEVERITIES), function SetLogDestination,
file /Users/samyao/Git/trace/node_modules/react-native/third-party/glog-0.3.4/src/logging.cc, line 595.
解决办法:
inline void LogDestination::SetLogDestination(LogSeverity severity, const char* base_filename) { // assert(severity >= 0 && severity < NUM_SEVERITIES); char* base_filename_copy = nullptr; //初始化char*类型 base_filename_copy = const_cast<char*>(base_filename); //const char*类型转char*类型 if (severity >= 0 && severity < NUM_SEVERITIES) { // } else { severity = 0; base_filename_copy = const_cast<char*>("glogTest"); } // Prevent any subtle race conditions by wrapping a mutex lock around // all this stuff. MutexLock l(&log_mutex); //log_destination(severity)->fileobject_.SetBasename(base_filename); log_destination(severity)->fileobject_.SetBasename(base_filename_copy); }
分类:
混合开发 / RN项目
, iOS
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 现代计算机视觉入门之:什么是视频
· 你所不知道的 C/C++ 宏知识
· 聊一聊 操作系统蓝屏 c0000102 的故障分析
· SQL Server 内存占用高分析
· .NET Core GC计划阶段(plan_phase)底层原理浅谈
· 盘点!HelloGitHub 年度热门开源项目
· 某Websocket反爬逆向分析+请求加解密+还原html
· 02现代计算机视觉入门之:什么是视频
· 回顾我的软件开发经历:我与代码生成器的涅槃之路
· DeepSeek V3 两周使用总结
2018-07-20 android反编译
2018-07-20 解决在onCreate()过程中获取View的width和Height为0的4种方法
2018-07-20 android装饰者模式
2018-07-20 android中的适配器模式