Commit 84a2a0b5 by Philipp Adolf

Disable debug output by default

parent 2799525e
#include "mainwindow.h"
#include <QApplication>
#include <QLoggingCategory>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QLoggingCategory::setFilterRules("*.debug=false");
MainWindow w;
w.show();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment