标签:data however imu hold logging review file ice option
https://github.com/victronenergy/QsLog
https://github.com/mkroening/qslog
QsLog is an easy to use logger that is based on Qt‘s QDebug class. QsLog is released as open source, under the MIT license.
###Contribution policy### Bug fixes are welcome, larger changes however are not encouraged at this point due to the lack of time on my side for reviewing and integrating them. Your best bet in this case would be to open a ticket for your change or forking the project and implementing your change there, with the possibility of having it integrated in the future. All contributions will be credited, license of the contributions should be MIT.
Note: The logger does not take ownership of the destinations. Make sure that the destinations still exist when you call one of the logging macros. A good place to create the destinations is the program‘s main function.
Sometimes it‘s necessary to turn off logging. This can be done in several ways:
The Qt docs say: A thread-safe function can be called simultaneously from multiple threads, even when the invocations use shared data, because all references to the shared data are serialized. A reentrant function can also be called simultaneously from multiple threads, but only if each invocation uses its own data.
Since sending the log message to the destinations is protected by a mutex, the logging macros are thread-safe provided that the log has been initialized - i.e: instance() has been called. The instance function and the setup functions (e.g: setLoggingLevel, addDestination) are NOT thread-safe and are NOT reentrant.
https://github.com/MEONMedical/Log4Qt
libmodbus
https://github.com/stephane/libmodbus
https://github.com/ed-chemnitz/qmodbus
https://github.com/Jihadist/QModMaster
https://github.com/Thuzerland/qModbusMaster
标签:data however imu hold logging review file ice option
原文地址:https://www.cnblogs.com/sinferwu/p/14832871.html