diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2012-08-21 07:07:51 -0700 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2012-08-21 07:07:51 -0700 |
commit | 143acc7672a2b6c863af3ee8a023d640b7e9527a (patch) | |
tree | a220cc45484db03e80853cc4f3494045af62b7d0 /src/util.cpp | |
parent | 4a4a0c11967e0f41f68da7df5c9acda94735066e (diff) | |
parent | 4d51be1cf36fee33df57c9c4500b221d355cf636 (diff) |
Merge pull request #1687 from gavinandresen/quietunit
Suppress output when running unit tests.
Diffstat (limited to 'src/util.cpp')
-rw-r--r-- | src/util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp index c9654989af..69cc5f3424 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -204,7 +204,7 @@ inline int OutputDebugStringF(const char* pszFormat, ...) ret = vprintf(pszFormat, arg_ptr); va_end(arg_ptr); } - else + else if (!fPrintToDebugger) { // print to debug.log static FILE* fileout = NULL; |