Suppressing some logging

This commit is contained in:
Dan Paulat 2021-07-25 08:30:25 -05:00
parent 30fadcfbb6
commit 63c0034b64
7 changed files with 11 additions and 6 deletions

View file

@ -1,9 +1,14 @@
#include "main_window.hpp"
#include <boost/log/expressions.hpp>
#include <boost/log/trivial.hpp>
#include <QApplication>
int main(int argc, char* argv[])
{
boost::log::core::get()->set_filter(boost::log::trivial::severity >=
boost::log::trivial::debug);
QApplication a(argc, argv);
scwx::qt::MainWindow w;
w.show();