#include <QFileInfo>
#include <QsLog.h>
Go to the source code of this file.
|
#define | qlog_trace() |
| Copyright 2011-2012 - Reliable Bits Software by Blommers IT. More...
|
|
#define | qlog_debug() |
|
#define | qlog_info() |
|
#define | qlog_warn() |
|
#define | qlog_error() |
|
#define | qlog_fatal() QsLogging::Logger::Helper(QsLogging::FatalLevel).stream() << QFileInfo(__FILE__).fileName() << '@' << __LINE__ |
|
#define | qlog() QsLogging::Logger::Helper(QsLogging::InfoLevel).stream() |
|
◆ qlog
#define qlog |
( |
| ) |
QsLogging::Logger::Helper(QsLogging::InfoLevel).stream() |
◆ qlog_debug
Value:if( QsLogging::Logger::instance().loggingLevel() > QsLogging::DebugLevel ){} \
else QsLogging::Logger::Helper(QsLogging::DebugLevel).stream() << QFileInfo(__FILE__).fileName() << '@' << __LINE__
◆ qlog_error
Value:if( QsLogging::Logger::instance().loggingLevel() > QsLogging::ErrorLevel ){} \
else QsLogging::Logger::Helper(QsLogging::ErrorLevel).stream() << QFileInfo(__FILE__).fileName() << '@' << __LINE__
◆ qlog_fatal
#define qlog_fatal |
( |
| ) |
QsLogging::Logger::Helper(QsLogging::FatalLevel).stream() << QFileInfo(__FILE__).fileName() << '@' << __LINE__ |
◆ qlog_info
Value:if( QsLogging::Logger::instance().loggingLevel() > QsLogging::InfoLevel ){} \
else QsLogging::Logger::Helper(QsLogging::InfoLevel).stream() << QFileInfo( __FILE__).fileName() << '@' << __LINE__
◆ qlog_trace
Value:if( QsLogging::Logger::instance().loggingLevel() > QsLogging::TraceLevel ){} \
else QsLogging::Logger::Helper(QsLogging::TraceLevel).stream() << QFileInfo(__FILE__).fileName() << '@' << __LINE__
Copyright 2011-2012 - Reliable Bits Software by Blommers IT.
All Rights Reserved. Author Rick Blommers
◆ qlog_warn
Value:if( QsLogging::Logger::instance().loggingLevel() > QsLogging::WarnLevel ){} \
else QsLogging::Logger::Helper(QsLogging::WarnLevel).stream() << QFileInfo(__FILE__).fileName() << '@' << __LINE__