Qt: Untested Windows version 10.0 detected! log4cplus:ERROR No appenders could be found for logger (AdSyncNamespace). log4cplus:ERROR Please initialize the log4cplus system properly. Qt: Untested Windows version 10.0 detected! log4cplus:ERROR No appenders could be found for logger (AdSyncNamespace). log4cplus:ERROR Please initialize the log4cplus system properly. Qt: Untested Windows version 10.0 detected! log4cplus:ERROR No appenders could be found for logger (AdSyncNamespace). log4cplus:ERROR Please initialize the log4cplus system properly.
时间: 2024-03-04 16:53:06 浏览: 459
这个错误提示是由于在Windows 10系统中运行Qt程序时,log4cplus没有正确初始化导致的。建议检查你的log4cplus配置和初始化代码,确保正确地设置了日志记录器和appender。你可以查看log4cplus文档或者在log4cplus社区寻求帮助。同时也可以在CSDN社区或者其他技术论坛上发帖求助,以获取更多的帮助。
相关问题
python出现Qt: Untested Windows version 10.0 detected!,如何解决
在Python中遇到"Qt: Untested Windows version 10.0 detected!"这个警告信息通常是由于使用的PyQt或PySide库与当前的Windows版本不兼容引起的。解决这个问题的一种方法是更新或重新安装PyQt或PySide库的版本。
首先,确保你已经安装了最新版本的PyQt或PySide库。你可以使用以下命令来安装最新版本的库:
```
pip install --upgrade PyQt5 # 如果使用的是PyQt5
pip install --upgrade PySide2 # 如果使用的是PySide2
```
如果已经安装了最新版本的库,但仍然出现警告信息,请尝试重新安装库。可以使用以下命令卸载旧版本并重新安装:
```
pip uninstall PyQt5 # 如果使用的是PyQt5
pip uninstall PySide2 # 如果使用的是PySide2
pip install PyQt5 # 如果使用的是PyQt5
pip install PySide2 # 如果使用的是PySide2
```
如果以上方法都无效,你还可以尝试在代码中禁用Qt警告信息。可以在代码开头添加以下几行:
```python
import os
os.environ["QT_LOGGING_RULES"] = "qt.qpa.*=false"
```
这样可以禁用Qt的日志输出,包括警告信息。
希望这些方法能够帮助你解决问题!如果问题仍然存在,请提供更多详细信息,以便我能够给出更准确的解决方案。
[2023.06.11 18:10:08.341] Qt: Untested Windows version 10.0 detected! [2023.06.11 18:10:08.349] Qt: Untested Windows version 10.0 detected! [2023.06.11 18:10:08.352] Qt: Untested Windows version 10.0 detected! [2023.06.11 18:10:16.429] [UI ] ["cmd: ","pknvylm8","/mission","move"] [2023.06.11 18:10:16.430] [DJIMissionManager ] src: C:/Users/汪世深/Documents/DJI/DJITerra [2023.06.11 18:10:16.430] [DJIMissionManager ] dest: E:/项目/PCGSPRO_1686478215 [2023.06.11 18:10:16.433] [DJIMissionManager ] Source folder size: 0.009MB [2023.06.11 18:10:16.433] [DJIMissionManager ] Disk E: free space: 417873.863MB [2023.06.11 18:10:16.434] [UI ] ["cmd: ","pknvylm8"] [2023.06.11 18:10:16.438] [UI ] ["cmd: ","pknvylm8"] [2023.06.11 18:10:16.438] [UI ] ["cmd: ","pknvylm8"] [2023.06.11 18:10:16.440] [UI ] ["cmd: ","clkpm0em","/mission","get"] [2023.06.11 18:10:16.441] [UI ] ["cmd: ","pknvylm8"] [2023.06.11 18:10:16.441] [UI ] ["cmd: ","dlp33u6u","/settings/missions_dir","set"] [2023.06.11 18:10:16.442] [UI ] ["cmd: ","clkpm0em"] [2023.06.11 18:10:16.446] [UI ] ["cmd: ","dlp33u6u"] [2023.06.11 18:10:17.673] [UI ] ["globalClickMonitor click: ","\n 确定\n "] [2023.06.11 18:10:17.698] [dServer ] Disconnected! /groundstation, GroundstationView [2023.06.11 18:10:17.698] [dServer ] Disconnected! /groundstation_push, GroundStationPushView [2023.06.11 18:10:17.698] [dServer ] Disconnected! /general, root
这段日志是一个软件的运行日志,包含了几个时间戳和一些输出信息。其中,“Untested Windows version 10.0 detected!” 表示该软件检测到了未经测试的 Windows 10 操作系统版本。接下来的日志显示了一些用户操作,例如执行了一个“move”指令,将源文件从 C:/Users/汪世深/Documents/DJI/DJITerra 移动到了 E:/项目/PCGSPRO_1686478215 目录下。还有一些其他的指令,例如“get”和“set”,以及一些点击事件的记录。最后的“Disconnected!” 表示与服务器的连接已经断开。这些信息通常用于诊断软件运行时的问题或记录用户活动。
阅读全文