From: James Procter Date: Tue, 6 Jun 2023 15:31:03 +0000 (+0100) Subject: JAL-4195 Debug message indicating creation of an image file should come before we... X-Git-Tag: Release_2_11_4_0~213^2~22^2~7 X-Git-Url: http://source.jalview.org/gitweb/?a=commitdiff_plain;h=9fd03d86789221ae4f6cf720cadf3d99cc68ac33;p=jalview.git JAL-4195 Debug message indicating creation of an image file should come before we make the call to create the file ! --- 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: