From a544875e5890928e8a104d05bfdf4f655a9b2f4c Mon Sep 17 00:00:00 2001 From: kramm Date: Thu, 8 May 2008 14:59:09 +0000 Subject: [PATCH] enhanced logging --- lib/pdf/GFXOutputDev.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/pdf/GFXOutputDev.cc b/lib/pdf/GFXOutputDev.cc index ca3abbd..53a88ed 100644 --- a/lib/pdf/GFXOutputDev.cc +++ b/lib/pdf/GFXOutputDev.cc @@ -1203,7 +1203,8 @@ void GFXOutputDev::clipToStrokePath(GfxState *state) gfxline_t*line= gfxPath_to_gfxline(state, path, 0, user_movex + clipmovex, user_movey + clipmovey); if(getLogLevel() >= LOGLEVEL_TRACE) { - msg(" cliptostrokepath"); + double width = state->getTransformedLineWidth(); + msg(" cliptostrokepath width=%f", width); dump_outline(line); } -- 1.7.10.4