[vlmc-devel] VlmcLogger: Remove an extra space from log lines
Hugo Beauzée-Luyssen
git at videolan.org
Sat Feb 8 23:27:59 CET 2014
vlmc | branch: master | Hugo Beauzée-Luyssen <hugo at beauzee.fr> | Sun Feb 9 00:27:04 2014 +0200| [3f5c15c58edd7108e50c8662d5bab4871971f083] | committer: Hugo Beauzée-Luyssen
VlmcLogger: Remove an extra space from log lines
> http://git.videolan.org/gitweb.cgi/vlmc.git/?a=commit;h=3f5c15c58edd7108e50c8662d5bab4871971f083
---
src/Tools/VlmcDebug.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/Tools/VlmcDebug.h b/src/Tools/VlmcDebug.h
index ed0c214..4ad8a07 100644
--- a/src/Tools/VlmcDebug.h
+++ b/src/Tools/VlmcDebug.h
@@ -29,17 +29,17 @@
inline QDebug vlmcDebug()
{
- return (qDebug().nospace() << '[' << qPrintable(QTime::currentTime().toString("hh:mm:ss.zzz")) << "] T #" << QThread::currentThreadId() << " D: ").space();
+ return (qDebug().nospace() << '[' << qPrintable(QTime::currentTime().toString("hh:mm:ss.zzz")) << "] T #" << QThread::currentThreadId() << " D:").space();
}
inline QDebug vlmcWarning()
{
- return (vlmcWarning().nospace() << '[' << qPrintable(QTime::currentTime().toString("hh:mm:ss.zzz")) << "] T #" << QThread::currentThreadId() << " W: ").space();
+ return (vlmcWarning().nospace() << '[' << qPrintable(QTime::currentTime().toString("hh:mm:ss.zzz")) << "] T #" << QThread::currentThreadId() << " W:").space();
}
inline QDebug vlmcCritical()
{
- return (qCritical().nospace() << '[' << qPrintable(QTime::currentTime().toString("hh:mm:ss.zzz")) << "] T #" << QThread::currentThreadId() << " C: ").space();
+ return (qCritical().nospace() << '[' << qPrintable(QTime::currentTime().toString("hh:mm:ss.zzz")) << "] T #" << QThread::currentThreadId() << " C:").space();
}
inline void vlmcFatal(const char* msg, ...)
More information about the Vlmc-devel
mailing list