X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fbin%2FConsole.java;fp=src%2Fjalview%2Fbin%2FConsole.java;h=3e09d0751927b5db46988dfc690a11b89477aadb;hb=9c98d4bd666346f6ad3892c5394b7da3be82d93e;hp=0b5a38afbbc7e1bf7a8a0f934818678ff78d46ac;hpb=c7b2143c9cf7c5e05ad63251f7d3910751b16d20;p=jalview.git diff --git a/src/jalview/bin/Console.java b/src/jalview/bin/Console.java index 0b5a38a..3e09d07 100644 --- a/src/jalview/bin/Console.java +++ b/src/jalview/bin/Console.java @@ -1,3 +1,23 @@ +/* + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors + * + * This file is part of Jalview. + * + * Jalview is free software: you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * Jalview is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR + * PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Jalview. If not, see . + * The Jalview Authors are detailed in the 'AUTHORS' file. + */ package jalview.bin; import jalview.log.JLogger; @@ -23,7 +43,7 @@ public class Console System.out.println(message); t.printStackTrace(); } - + } public static void info(String message) @@ -36,7 +56,7 @@ public class Console { System.out.println(message); } - + } public static void trace(String message, Throwable t) @@ -62,7 +82,7 @@ public class Console { System.out.println(message); } - + } public static void info(String message, Throwable t) @@ -76,7 +96,7 @@ public class Console System.out.println(message); t.printStackTrace(); } - + } public static void warn(String message) @@ -89,7 +109,7 @@ public class Console { System.out.println(message); } - + } public static void trace(String message) @@ -115,7 +135,7 @@ public class Console System.out.println(message); t.printStackTrace(); } - + } public static void error(String message) @@ -128,7 +148,7 @@ public class Console { System.err.println(message); } - + } public static void error(String message, Throwable t) @@ -142,7 +162,7 @@ public class Console System.err.println(message); t.printStackTrace(System.err); } - + } public static void fatal(String message) @@ -155,7 +175,7 @@ public class Console { System.err.println(message); } - + } public static void fatal(String message, Throwable t) @@ -169,7 +189,7 @@ public class Console System.err.println(message); t.printStackTrace(System.err); } - + } public static boolean isDebugEnabled() @@ -209,7 +229,7 @@ public class Console // is laxis used? Does getLogger do anything without a Logger object? // Logger laxis = Log4j.getLogger("org.apache.axis", myLevel); JLoggerLog4j.getLogger("org.apache.axis", cachedLevel); - + // The main application logger log = JLoggerLog4j.getLogger(Cache.JALVIEW_LOGGER_NAME, cachedLevel); } catch (NoClassDefFoundError e) @@ -217,7 +237,7 @@ public class Console System.err.println("Could not initialise the logger framework"); e.printStackTrace(); } - + // Test message if (log != null) {