-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7814 from elemoine/ele_logging
Support QGIS Server logs to stderr
- Loading branch information
Showing
13 changed files
with
299 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
/************************************************************************ | ||
* This file has been generated automatically from * | ||
* * | ||
* src/server/qgsserverlogger.h * | ||
* * | ||
* Do not edit manually ! Edit header and run scripts/sipify.pl again * | ||
************************************************************************/ | ||
|
||
|
||
|
||
|
||
|
||
|
||
class QgsServerLogger : QgsMessageLogConsole | ||
{ | ||
%Docstring | ||
Writes message log into server logfile | ||
|
||
.. versionadded:: 2.8 | ||
%End | ||
|
||
%TypeHeaderCode | ||
#include "qgsserverlogger.h" | ||
%End | ||
public: | ||
|
||
static QgsServerLogger *instance(); | ||
%Docstring | ||
Gets the singleton instance | ||
%End | ||
|
||
Qgis::MessageLevel logLevel() const; | ||
%Docstring | ||
Gets the current log level | ||
|
||
:return: the log level | ||
|
||
.. versionadded:: 3.0 | ||
%End | ||
|
||
void setLogLevel( Qgis::MessageLevel level ); | ||
%Docstring | ||
Set the current log level | ||
|
||
:param level: the log level | ||
|
||
.. versionadded:: 3.0 | ||
%End | ||
|
||
void setLogFile( const QString &filename = QString() ); | ||
%Docstring | ||
Set the current log file | ||
%End | ||
|
||
void setLogStderr(); | ||
%Docstring | ||
Activates logging to stderr. | ||
|
||
.. versionadded:: 3.4. | ||
%End | ||
|
||
public slots: | ||
|
||
virtual void logMessage( const QString &message, const QString &tag, Qgis::MessageLevel level ); | ||
|
||
%Docstring | ||
Log a message from the server context | ||
|
||
:param message: the message | ||
:param tag: tag of the message | ||
:param level: log level of the message | ||
%End | ||
|
||
protected: | ||
QgsServerLogger(); | ||
|
||
}; | ||
|
||
/************************************************************************ | ||
* This file has been generated automatically from * | ||
* * | ||
* src/server/qgsserverlogger.h * | ||
* * | ||
* Do not edit manually ! Edit header and run scripts/sipify.pl again * | ||
************************************************************************/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.