Simple, convinient and thread safe logger for Qt-based C++ apps
- Logs pretty much everything: file name, source line, function signature
- Flexible appender system: log to file, console or even Android logcat, add custom appenders, customize output format
- Compatible with Qt builtin types. Can be used as a drop-in replacement for qDebug etc.
- Supports measuring timing for an operations
- Supports log categories, able to log all messages from a class/namespace to custom category
- Thread safe
#include <QCoreApplication>
#include <Logger.h>
#include <ConsoleAppender.h>
int main(int argc, char* argv[])
{
QCoreApplication app(argc, argv);
...
ConsoleAppender* consoleAppender = new ConsoleAppender;
consoleAppender->setFormat("[%{type:-7}] <%{Function}> %{message}\n");
cuteLogger->registerAppender(consoleAppender);
...
LOG_INFO("Starting the application");
int result = app.exec();
...
if (result)
LOG_WARNING() << "Something went wrong." << "Result code is" << result;
return result;
}
Add this repo as a git submodule to your project.
git submodule add [email protected]:dept2/CuteLogger.git CuteLogger
Include it to your CMakeLists.txt file:
...
ADD_SUBDIRECTORY(Logger)
...
TARGET_LINK_LIBRARIES(${your_target} ... CuteLogger)
Include Logger.h
and one or several appenders of your choice:
#include <Logger.h>
#include <ConsoleAppender.h>