[fix][log][trace] Fixed log output to actually match intended output

This commit is contained in:
Daniel_M_Williams 2020-08-01 11:52:15 -04:00
parent 27df9c9a71
commit 0903ecfb05

View File

@ -185,7 +185,7 @@ public abstract class AbstractScaleFigure extends JPanel {
* Updates the figure shapes and figure size. * Updates the figure shapes and figure size.
*/ */
public void updateFigure() { public void updateFigure() {
log.trace(String.format("____ Updating %s to: %g user scale, %g overall scale", this.getClass().getSimpleName(), this.getAbsoluteScale(), this.scale)); log.trace(String.format("____ Updating %s to: %g user scale, %g overall scale", this.getClass().getSimpleName(), this.userScale, this.scale));
updateSubjectDimensions(); updateSubjectDimensions();
updateCanvasSize(); updateCanvasSize();