You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- remove method names from QgsDebugMsg calls as they are already included in the output
- replace filename with file name in strings and comments instead of fileName (same for layerName)
- fix debugging output in interpolation plugin
(QgsDebugMsg migration ate the last argument where std::flush was used)
- fix some common typos
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@9150 c8812cc2-4d05-0410-92ff-de0c093fc19c
Copy file name to clipboardExpand all lines: python/core/qgslogger.sip
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
4
4
QGIS_DEBUG is an int describing what debug messages are written to the console. If the debug level of a message is <= QGIS_DEBUG, the message is written to the console. It the variable QGIS_DEBUG is not defined, it defaults to 1 for debug mode and to 0 for release mode
5
5
6
-
QGIS_DEBUG_FILE may contain a fileName. Only the messages from this file are printed (provided they have the right debuglevel). If QGIS_DEBUG_FILE is not set, messages from all files are printed
6
+
QGIS_DEBUG_FILE may contain a file name. Only the messages from this file are printed (provided they have the right debuglevel). If QGIS_DEBUG_FILE is not set, messages from all files are printed
7
7
*/
8
8
9
9
class QgsLogger
@@ -17,7 +17,7 @@ class QgsLogger
17
17
/**Goes to qDebug.
18
18
@param msg the message to be printed
19
19
@param debuglevel
20
-
@param file fileName where the message comes from
20
+
@param file file name where the message comes from
21
21
@param function function where the message comes from
22
22
@param line place in file where the message comes from*/
23
23
static void debug(const QString& msg, int debuglevel = 1, const char* file = NULL, const char* function = NULL, int line = -1);
0 commit comments