summaryrefslogtreecommitdiffstats
path: root/src/qtattributionsscanner/logging.h
blob: 9d61f97e6106b896c0b7fcaf2a59acb7fe1e8a21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#ifndef LOGGING_H
#define LOGGING_H

#include <QtCore/qcoreapplication.h>

enum LogLevel {
    VerboseLog,
    NormalLog,
    SilentLog
};

static QString tr(const char *key) {
    return QCoreApplication::translate("qtattributionsscanner", key);
}

#endif // LOGGING_H