mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-18 20:02:17 +03:00
Merge pull request #3902 from nextcloud/feature/log-filename-linenum
Log file name and line number
This commit is contained in:
commit
597e29ebe9
1 changed files with 2 additions and 1 deletions
|
@ -46,7 +46,8 @@ Logger *Logger::instance()
|
||||||
Logger::Logger(QObject *parent)
|
Logger::Logger(QObject *parent)
|
||||||
: QObject(parent)
|
: QObject(parent)
|
||||||
{
|
{
|
||||||
qSetMessagePattern(QStringLiteral("%{time yyyy-MM-dd hh:mm:ss:zzz} [ %{type} %{category} ]%{if-debug}\t[ %{function} ]%{endif}:\t%{message}"));
|
qSetMessagePattern(QStringLiteral("%{time yyyy-MM-dd hh:mm:ss:zzz} [ %{type} %{category} %{file}:%{line} "
|
||||||
|
"]%{if-debug}\t[ %{function} ]%{endif}:\t%{message}"));
|
||||||
_crashLog.resize(CrashLogSize);
|
_crashLog.resize(CrashLogSize);
|
||||||
#ifndef NO_MSG_HANDLER
|
#ifndef NO_MSG_HANDLER
|
||||||
qInstallMessageHandler([](QtMsgType type, const QMessageLogContext &ctx, const QString &message) {
|
qInstallMessageHandler([](QtMsgType type, const QMessageLogContext &ctx, const QString &message) {
|
||||||
|
|
Loading…
Reference in a new issue