/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Copyright (C) 2020, Laurent Pinchart * * message_handler.cpp - qcam - Log message handling */ #pragma once #include class MessageHandler { public: MessageHandler(bool verbose); private: static void handleMessage(QtMsgType type, const QMessageLogContext &context, const QString &msg); static QtMessageHandler handler_; static bool verbose_; }; '/>
summaryrefslogtreecommitdiff
blob: 8673dad1875106d5046416686a7d372aed0931e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13