Merge branch 'develop' into releases/Release_2_11_2_Branch
[jalview.git] / src / jalview / bin / Console.java
index 0b5a38a..3e09d07 100644 (file)
@@ -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 <http://www.gnu.org/licenses/>.
+ * 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)
     {