#ifndef LOGGER_H
#define LOGGER_H

#include <QtDebug>

#define LOG_INFO qDebug
#define LOG_WARNING qWarning
#define LOG_ERROR qCritical

#endif

