QGIS API Documentation  3.10.0-A Coruña (6c816b4204)
qgslogger.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgslogger.h - description
3  -------------------
4  begin : April 2006
5  copyright : (C) 2006 by Marco Hugentobler
6  email : marco.hugentobler at karto dot baug dot ethz dot ch
7  ***************************************************************************/
8 
9 /***************************************************************************
10  * *
11  * This program is free software; you can redistribute it and/or modify *
12  * it under the terms of the GNU General Public License as published by *
13  * the Free Software Foundation; either version 2 of the License, or *
14  * (at your option) any later version. *
15  * *
16  ***************************************************************************/
17 
18 #ifndef QGSLOGGER_H
19 #define QGSLOGGER_H
20 
21 #include <iostream>
22 #include "qgis_sip.h"
23 #include <sstream>
24 #include <QString>
25 #include <QTime>
26 
27 #include "qgis_core.h"
28 #include "qgsconfig.h"
29 
30 class QFile;
31 
32 #ifdef QGISDEBUG
33 #define QgsDebugMsg(str) QgsLogger::debug(QString(str), 1, __FILE__, __FUNCTION__, __LINE__)
34 #define QgsDebugMsgLevel(str, level) QgsLogger::debug(QString(str), (level), __FILE__, __FUNCTION__, __LINE__)
35 #define QgsDebugCall QgsScopeLogger _qgsScopeLogger(__FILE__, __FUNCTION__, __LINE__)
36 #else
37 #define QgsDebugCall
38 #define QgsDebugMsg(str)
39 #define QgsDebugMsgLevel(str, level)
40 #endif
41 
59 class CORE_EXPORT QgsLogger
60 {
61  public:
62 
70  static void debug( const QString &msg, int debuglevel = 1, const char *file = nullptr, const char *function = nullptr, int line = -1 );
71 
73  static void debug( const QString &var, int val, int debuglevel = 1, const char *file = nullptr, const char *function = nullptr, int line = -1 );
74 
79  static void debug( const QString &var, double val, int debuglevel = 1, const char *file = nullptr, const char *function = nullptr, int line = -1 ) SIP_SKIP SIP_SKIP;
80 
85  template <typename T> static void debug( const QString &var, T val, const char *file = nullptr, const char *function = nullptr,
86  int line = -1, int debuglevel = 1 ) SIP_SKIP SIP_SKIP
87  {
88  std::ostringstream os;
89  os << var.toLocal8Bit().data() << " = " << val;
90  debug( var, os.str().c_str(), file, function, line, debuglevel );
91  }
92 
94  static void warning( const QString &msg );
95 
97  static void critical( const QString &msg );
98 
100  static void fatal( const QString &msg );
101 
105  static int debugLevel() { init(); return sDebugLevel; }
106 
108  static void logMessageToFile( const QString &message );
109 
113  static const QString logFile() { init(); return sLogFile; }
114 
115  private:
116  static void init();
117 
119  static int sDebugLevel;
120  static int sPrefixLength;
121  static QString sLogFile;
122  static QString sFileFilter;
123  static QTime sTime;
124 };
125 
129 class CORE_EXPORT QgsScopeLogger // clazy:exclude=rule-of-three
130 {
131  public:
132  QgsScopeLogger( const char *file, const char *func, int line )
133  : _file( file )
134  , _func( func )
135  , _line( line )
136  {
137  QgsLogger::debug( QStringLiteral( "Entering." ), 1, _file, _func, _line );
138  }
140  {
141  QgsLogger::debug( QStringLiteral( "Leaving." ), 1, _file, _func, _line );
142  }
143  private:
144  const char *_file = nullptr;
145  const char *_func = nullptr;
146  int _line;
147 };
148 
149 #endif
QgsLogger is a class to print debug/warning/error messages to the console.
Definition: qgslogger.h:59
QgsScopeLogger(const char *file, const char *func, int line)
Definition: qgslogger.h:132
#define SIP_SKIP
Definition: qgis_sip.h:126
static void debug(const QString &msg, int debuglevel=1, const char *file=nullptr, const char *function=nullptr, int line=-1)
Goes to qDebug.
Definition: qgslogger.cpp:57
static const QString logFile()
Reads the environment variable QGIS_LOG_FILE.
Definition: qgslogger.h:113
static int debugLevel()
Reads the environment variable QGIS_DEBUG and converts it to int.
Definition: qgslogger.h:105
static void debug(const QString &var, T val, const char *file=nullptr, const char *function=nullptr, int line=-1, int debuglevel=1)
Prints out a variable/value pair for types with overloaded operator<<.
Definition: qgslogger.h:85