From 36663210c982e6e9272f96b1cd5ba9d760e6de04 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 3 Sep 2022 16:07:17 -0600 Subject: [PATCH] canvas: improve debug trace output during Box::reposition_children() --- libs/canvas/box.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/canvas/box.cc b/libs/canvas/box.cc index 43571a4773..a50fc0483e 100644 --- a/libs/canvas/box.cc +++ b/libs/canvas/box.cc @@ -363,7 +363,7 @@ Box::reposition_children (Distance width, Distance height, bool shrink_width, bo } } else { isize = Rect (previous_edge.x, previous_edge.y, previous_edge.x + width, previous_edge.y + height); - DEBUG_TRACE (DEBUG::CanvasBox|DEBUG::CanvasSizeAllocate, string_compose ("\t%1, use item size (non-homogenous) to give %2\n", (*i)->whoami(), isize)); + DEBUG_TRACE (DEBUG::CanvasBox|DEBUG::CanvasSizeAllocate, string_compose ("\t%1, use item size %2 x %3 (non-homogenous) to give %4\n", (*i)->whoami(), width, height, isize)); } DEBUG_TRACE (DEBUG::CanvasBox|DEBUG::CanvasSizeAllocate, string_compose ("\t%1 allocating %2\n", (*i)->whoami(), isize));