[LyX/master] Comment out too verbose debug output

Jean-Marc Lasgouttes lasgouttes at lyx.org
Wed Apr 10 12:06:42 UTC 2024


commit c3fb9fe95f02319ed8dd4bfc1f2fe306819a3d90
Author: Jean-Marc Lasgouttes <lasgouttes at lyx.org>
Date:   Wed Apr 10 14:06:30 2024 +0200

    Comment out too verbose debug output
---
 src/TextMetrics.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/TextMetrics.cpp b/src/TextMetrics.cpp
index 93d4334598..ce8cfe552d 100644
--- a/src/TextMetrics.cpp
+++ b/src/TextMetrics.cpp
@@ -1547,8 +1547,8 @@ pit_type TextMetrics::getPitNearY(int y)
 	}
 
 	for (; it != et; ++it) {
-		LYXERR(Debug::PAINTING, "examining: pit: " << it->first
-			<< " y: " << it->second.position());
+		// LYXERR(Debug::PAINTING, "examining: pit: " << it->first
+		// 	<< " y: " << it->second.position());
 
 		if (it->first >= pit && it->second.top() <= y) {
 			pit = it->first;


More information about the lyx-cvs mailing list