# QLogger **Repository Path**: gmind31/QLogger ## Basic Information - **Project Name**: QLogger - **Description**: Thread-safe logger for Qt applications https://www.francescmm.com git clone https://github.com/francescmm/QLogger.git - **Primary Language**: C++ - **License**: LGPL-2.1 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-05-22 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # QLogger In this repository you can find a logger class. Follow the instructions for usage: 1. Create an instance: QLoggerManager *manager = QLoggerManager::getInstance(); 2. Add as many destinations as you want: manager->addDestination(filePathName, module, logLevel); 3. Print the log in the file with: QLog_ followed by Trace/Debug/Info/Warning/Error/Fatal You can add as much destinations as you want. You also can add several modules for each log file.