https://git.reactos.org/?p=reactos.git;a=commitdiff;h=9835710f7e9ef9b9c273d0...
commit 9835710f7e9ef9b9c273d0213ea630b97392689d Author: Joachim Henze Joachim.Henze@reactos.org AuthorDate: Tue Sep 1 19:11:22 2020 +0200 Commit: Joachim Henze Joachim.Henze@reactos.org CommitDate: Tue Sep 1 19:11:22 2020 +0200
[GDI] Demote the insane amount of logging CORE-1091
that was introduced by 0.4.15-dev-684-g 448bcede24b2f8384c35656019622eb0ff5379d2 --- win32ss/gdi/ntgdi/text.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/win32ss/gdi/ntgdi/text.c b/win32ss/gdi/ntgdi/text.c index 3761dd8f3e0..8de0855558e 100644 --- a/win32ss/gdi/ntgdi/text.c +++ b/win32ss/gdi/ntgdi/text.c @@ -41,7 +41,7 @@ IntTMWFixUp( * to a TrueType one when we have a 'Raster' font as our input we filter * out the problematic TrueType and Vector bits. * Our list below checks for Raster Font Facenames. */ - DPRINT1("Font Facename is '%S'.\n", lf.lfFaceName); + DPRINT("Font Facename is '%S'.\n", lf.lfFaceName); if ((wcsicmp(lf.lfFaceName, L"Helv") == 0) || (wcsicmp(lf.lfFaceName, L"Courier") == 0) || (wcsicmp(lf.lfFaceName, L"MS Sans Serif") == 0) ||