From 730b166213454ce4edf737f57bec6b3c3b1a23ef Mon Sep 17 00:00:00 2001 From: LoudSnorer Date: Fri, 10 Nov 2023 21:28:56 -0500 Subject: [PATCH] DEBUG: compressed datetime display macro --- oscar/test_macros.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oscar/test_macros.h b/oscar/test_macros.h index da42e074..30ae11cf 100644 --- a/oscar/test_macros.h +++ b/oscar/test_macros.h @@ -72,7 +72,7 @@ To turn off the the test macros. //display the date of an epoch time stamp "qint64" #define DATE( EPOCH ) << QDateTime::fromMSecsSinceEpoch( EPOCH ).toString("dd MMM yyyy") //display the date and Time of an epoch time stamp "qint64" -#define DATETIME( EPOCH ) << QDateTime::fromMSecsSinceEpoch( EPOCH ).toString("dd MMM yyyy hh:mm:ss.zzz") +#define DATETIME( EPOCH ) << QDateTime::fromMSecsSinceEpoch( EPOCH ).toString("ddMMMyyyy hh:mm:ss.zzz") #define IF( EXPRESSION ) if (EXPRESSION ) #define IFD( EXPA , EXPB ) bool EXPA = EXPB