Skip to content

linuxdeepin/dtklog

Repository files navigation

DtkLog

Simple, convinient and thread safe logger for Qt-based C++ apps

Short example

#include <QCoreApplication>
#include <QDebug>

#include <dloghelper.h>
#include <ConsoleAppender.h>

DLOG_CORE_USE_NAMESPACE
int main(int argc, char *argv[])
{
    QCoreApplication a(argc, argv);
    
    auto consoleAppender = new ConsoleAppender;
    consoleAppender->setFormat("[%{type:-7}] <%{Function}> %{message}\n");
    dlogger->registerAppender(consoleAppender);

    dInfo("Starting the application");

    dWarning() << "Something went wrong." << "Result code is" << -1;

    return 0;
}

Adding DtkLog to your project

Add this repo as a git submodule to your project.

Include it to your CMakeLists.txt file:

find_package(DtkLog REQUIRED)
...

...
TARGET_LINK_LIBRARIES(${your_target} ... Dtk::Log)

Include dloghelper.h and one or several appenders of your choice:

#include <dloghelper.h>
#include <ConsoleAppender.h>

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 16