remove superfluous \n
This commit is contained in:
parent
a67e587769
commit
3039fcc553
@ -63,7 +63,7 @@ void atbDebugOutput(QtMsgType type, const QMessageLogContext &context, const QSt
|
|||||||
switch (type) {
|
switch (type) {
|
||||||
case QtDebugMsg: {
|
case QtDebugMsg: {
|
||||||
if (debugLevel == QtDebugMsg) {
|
if (debugLevel == QtDebugMsg) {
|
||||||
snprintf(buf, sizeof(buf)-1, "%30.30s (%20.20s:%04u) %s.%03d DEBG %s\n",
|
snprintf(buf, sizeof(buf)-1, "%30.30s (%20.20s:%04u) %s.%03d DEBG %s",
|
||||||
function, file, context.line,
|
function, file, context.line,
|
||||||
datetime.time().toString(format).toStdString().c_str(),
|
datetime.time().toString(format).toStdString().c_str(),
|
||||||
fractional_part,
|
fractional_part,
|
||||||
@ -73,7 +73,7 @@ void atbDebugOutput(QtMsgType type, const QMessageLogContext &context, const QSt
|
|||||||
} break;
|
} break;
|
||||||
case QtInfoMsg: {
|
case QtInfoMsg: {
|
||||||
if (debugLevel == QtInfoMsg || debugLevel == QtDebugMsg) {
|
if (debugLevel == QtInfoMsg || debugLevel == QtDebugMsg) {
|
||||||
snprintf(buf, sizeof(buf)-1, "%30.30s (%20.20s:%04u) %s.%03d INFO %s\n",
|
snprintf(buf, sizeof(buf)-1, "%30.30s (%20.20s:%04u) %s.%03d INFO %s",
|
||||||
function, file, context.line,
|
function, file, context.line,
|
||||||
datetime.time().toString(format).toStdString().c_str(),
|
datetime.time().toString(format).toStdString().c_str(),
|
||||||
fractional_part,
|
fractional_part,
|
||||||
@ -83,7 +83,7 @@ void atbDebugOutput(QtMsgType type, const QMessageLogContext &context, const QSt
|
|||||||
} break;
|
} break;
|
||||||
case QtWarningMsg: {
|
case QtWarningMsg: {
|
||||||
if (debugLevel == QtInfoMsg || debugLevel == QtDebugMsg || debugLevel == QtWarningMsg) {
|
if (debugLevel == QtInfoMsg || debugLevel == QtDebugMsg || debugLevel == QtWarningMsg) {
|
||||||
snprintf(buf, sizeof(buf)-1, "%30.30s (%20.20s:%04u) %s.%03d WARN %s\n",
|
snprintf(buf, sizeof(buf)-1, "%30.30s (%20.20s:%04u) %s.%03d WARN %s",
|
||||||
function, file, context.line,
|
function, file, context.line,
|
||||||
datetime.time().toString(format).toStdString().c_str(),
|
datetime.time().toString(format).toStdString().c_str(),
|
||||||
fractional_part,
|
fractional_part,
|
||||||
@ -94,7 +94,7 @@ void atbDebugOutput(QtMsgType type, const QMessageLogContext &context, const QSt
|
|||||||
case QtCriticalMsg: {
|
case QtCriticalMsg: {
|
||||||
if (debugLevel == QtInfoMsg || debugLevel == QtDebugMsg
|
if (debugLevel == QtInfoMsg || debugLevel == QtDebugMsg
|
||||||
|| debugLevel == QtWarningMsg || debugLevel == QtCriticalMsg) {
|
|| debugLevel == QtWarningMsg || debugLevel == QtCriticalMsg) {
|
||||||
snprintf(buf, sizeof(buf)-1, "%30.30s (%20.20s:%04u) %s.%03d CRIT %s\n",
|
snprintf(buf, sizeof(buf)-1, "%30.30s (%20.20s:%04u) %s.%03d CRIT %s",
|
||||||
function, file, context.line,
|
function, file, context.line,
|
||||||
datetime.time().toString(format).toStdString().c_str(),
|
datetime.time().toString(format).toStdString().c_str(),
|
||||||
fractional_part,
|
fractional_part,
|
||||||
@ -106,7 +106,7 @@ void atbDebugOutput(QtMsgType type, const QMessageLogContext &context, const QSt
|
|||||||
if (debugLevel == QtInfoMsg || debugLevel == QtDebugMsg
|
if (debugLevel == QtInfoMsg || debugLevel == QtDebugMsg
|
||||||
|| debugLevel == QtWarningMsg || debugLevel == QtCriticalMsg
|
|| debugLevel == QtWarningMsg || debugLevel == QtCriticalMsg
|
||||||
|| debugLevel == QtFatalMsg) {
|
|| debugLevel == QtFatalMsg) {
|
||||||
snprintf(buf, sizeof(buf)-1, "%30.30s (%20.20s:%04u) %s.%03d FATAL %s\n",
|
snprintf(buf, sizeof(buf)-1, "%30.30s (%20.20s:%04u) %s.%03d FATAL %s",
|
||||||
function, file, context.line,
|
function, file, context.line,
|
||||||
datetime.time().toString(format).toStdString().c_str(),
|
datetime.time().toString(format).toStdString().c_str(),
|
||||||
fractional_part,
|
fractional_part,
|
||||||
|
Loading…
Reference in New Issue
Block a user