qcam: Make log less verbose by default
The qcam log prints one message per frame, which is pretty verbose. This feature is useful for debugging, but not necessarily as a default option. Silence it by default, and add a -v/--verbose command line parameter to make the log verbose. While this could have been handled manually by checking a verbose flag when printing the message, the feature is instead integrated with the Qt log infrastructure to make it more flexible. Messages printed by qDebug() are now silenced by default and controlled by the -v/--verbose argument. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
This commit is contained in:
@@ -16,6 +16,7 @@
|
||||
#include "../cam/options.h"
|
||||
#include "../cam/stream_options.h"
|
||||
#include "main_window.h"
|
||||
#include "message_handler.h"
|
||||
|
||||
void signalHandler([[maybe_unused]] int signal)
|
||||
{
|
||||
@@ -38,6 +39,8 @@ OptionsParser::Options parseOptions(int argc, char *argv[])
|
||||
"renderer", ArgumentRequired, "renderer");
|
||||
parser.addOption(OptStream, &streamKeyValue,
|
||||
"Set configuration of a camera stream", "stream", true);
|
||||
parser.addOption(OptVerbose, OptionNone,
|
||||
"Print verbose log messages", "verbose");
|
||||
|
||||
OptionsParser::Options options = parser.parse(argc, argv);
|
||||
if (options.isSet(OptHelp))
|
||||
@@ -57,6 +60,8 @@ int main(int argc, char **argv)
|
||||
if (options.isSet(OptHelp))
|
||||
return 0;
|
||||
|
||||
MessageHandler msgHandler(options.isSet(OptVerbose));
|
||||
|
||||
struct sigaction sa = {};
|
||||
sa.sa_handler = &signalHandler;
|
||||
sigaction(SIGINT, &sa, nullptr);
|
||||
|
||||
Reference in New Issue
Block a user