From 9fd03d86789221ae4f6cf720cadf3d99cc68ac33 Mon Sep 17 00:00:00 2001 From: James Procter Date: Tue, 6 Jun 2023 16:31:03 +0100 Subject: [PATCH] JAL-4195 Debug message indicating creation of an image file should come before we make the call to create the file ! --- src/jalview/bin/Commands.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/jalview/bin/Commands.java b/src/jalview/bin/Commands.java index 30fdc30..3d47505 100644 --- a/src/jalview/bin/Commands.java +++ b/src/jalview/bin/Commands.java @@ -738,6 +738,7 @@ public class Commands break; case "biojs": + Console.debug("Creating BioJS MSA Viwer HTML file: " + fileName); try { BioJsHTMLOutput.refreshVersionInfo( @@ -748,17 +749,16 @@ public class Commands } BioJsHTMLOutput bjs = new BioJsHTMLOutput(af.alignPanel); bjs.exportHTML(fileName); - Console.debug("Creating BioJS MSA Viwer HTML file: " + fileName); break; case "eps": - af.createEPS(file, name); Console.debug("Creating EPS file: " + fileName); + af.createEPS(file, name); break; case "imagemap": - af.createImageMap(file, name); Console.debug("Creating ImageMap file: " + fileName); + af.createImageMap(file, name); break; default: -- 1.7.10.2