728x90
반응형
-
QSLogLib는 SLogLib를 Qt로 이식한 로깅 라이브러리 입니다.
-
향상된 장치와 기능으로 Qt로 포팅되었습니다.
- Cmake는 더 이상 지원하지 않습니다.
- 크로스 플랫폼 지원을 위한 복잡한 코드 대신에 Qt를 사용합니다.
- UDP 클라이언트 로거가 추가되었습니다.
- 처음에 Qt 프로젝트 파일(*.pro)에 pri 파일을 추가합니다.
-
qmake
# Define QSLogLib relative path. You can fix this directory # QSLOG_PARENTPATH = ../../ # QSLOG_HEADERPATH = ../../QSLogLib/ # QSLOG_SOURCEPATH = ../../QSLogLib/ include(../../QSLogLib/QSLogLib.pri)
-
cpp
#include <QtGlobal> #include <QCoreApplication> #include "QSLogLib/SLogLib.h" #include "QSLogLib/Devices/AbstractLoggingDevice.h" #include "QSLogLib/Devices/ConsoleLogger.h" #include "QSLogLib/Devices/FileLogger.h" #include "QSLogLib/Devices/UdpLogger.h" #include "QSLogLib/Formatters/AbstractFormatter.h" #include "QSLogLib/Formatters/DetailedFormatter.h" #include "QSLogLib/Formatters/ErrorFormatter.h" #include "QSLogLib/Formatters/InfoFormatter.h" #include "QSLogLib/Formatters/NullFormatter.h" int main(int argc, char *argv[]) { QCoreApplication mainApp(argc, argv); using namespace QSLogLib; // 로깅 장치 추가 addLoggingDevice( new ConsoleLogger(new NullFormatter) ); // 콘솔(console) + 단순 로깅 형식(null format) addLoggingDevice( new FileLogger("foo.log", new DetailedFormatter) ); // 파일(file) + 자세한 로깅 형식(detailed format) // 콘솔과 파일 모두로 로그가 출력됨 int a = 10; double b = 15.3; const char* c = "Success"; SLOGLIB_LOG_MSG_INFO("a = " << a << " b = " << b); SLOGLIB_LOG_MSG_INFO(c); return 0; }
-
cpp
int main(int argc, char *argv[]) { QCoreApplication mainApp(argc, argv); using namespace QSLogLib; std::string strDestAddress = "192.168.137.1"; unsigned short destPort = 5000; addLoggingDevice(new UdpLogger(strDestAddress, destPort, new NullFormatter)); // UDP 패킷으로 로그를 송신 int a = 10; double b = 15.3; const char* c = "Success"; SLOGLIB_LOG_MSG_INFO("a = " << a << " b = " << b); SLOGLIB_LOG_MSG_INFO(c); return 0; }
- Qt 6.0.0 (MingW, Windows 64bit)
- Qt 5.10.1 (MingW, Windows 32bit)
- Qt 5.6.2 (Linux 64bit)
- QSLogLib는 MIT 라이센스입니다.
728x90
반응형
'Qt' 카테고리의 다른 글
[Qt] Google Play의 향후 요구 사항을 준수하는 방법 (0) | 2019.07.05 |
---|---|
Create user interfaces with Qt for Python | The official Python bindings for Qt (0) | 2018.12.19 |
[github] QPing : Ping class (Qt,C++) (0) | 2018.11.06 |
[github] QXlsx : 엑셀 파일(*.xlsx) 라이브러리 (Qt,C++) (0) | 2018.11.06 |
Qt 안드로이드(Android) 설정 (0) | 2018.08.17 |