diff options
Diffstat (limited to 'src/test.cpp')
-rw-r--r-- | src/test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test.cpp b/src/test.cpp index c30af0d1f..4cf4460be 100644 --- a/src/test.cpp +++ b/src/test.cpp @@ -59,7 +59,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #define UTEST(x, fmt, ...)\ {\ if(!(x)){\ - LOGLINEF(LMT_ERROR, "Test (%s) failed: " fmt, #x, ##__VA_ARGS__);\ + dstream << "Test (" #x ") failed: " fmt << std::endl; \ test_failed = true;\ }\ } |