]> git.mxchange.org Git - jcore-logger-lib.git/commitdiff
auto-reformatted many files
authorRoland Haeder <roland@mxchange.org>
Thu, 24 Sep 2015 13:10:36 +0000 (15:10 +0200)
committerRoland Haeder <roland@mxchange.org>
Thu, 24 Sep 2015 13:10:36 +0000 (15:10 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

src/org/mxchange/jcoreeelogger/beans/local/logger/Log.java
src/org/mxchange/jcoreeelogger/beans/local/logger/LoggerBeanLocal.java

index 613e9656e49b65215e3b4b74cfaa2fa75e9267e6..30b77a8150c31e6ece0beb88feabbb6bf491dd97 100644 (file)
@@ -24,13 +24,13 @@ import javax.inject.Qualifier;
 
 /**
  * Logger annotation. This file has been taken from
- * http://memorynotfound.com/java-se-unit-testing-cdi-junit-jboss-weld-se/ and has been slightly modified to make
- * it work.
+ * http://memorynotfound.com/java-se-unit-testing-cdi-junit-jboss-weld-se/ and
+ * has been slightly modified to make it work.
  *
  * @author Roland Haeder<roland@mxchange.org>
  */
 @Qualifier
-@Retention(RetentionPolicy.RUNTIME)
-@Target({ElementType.METHOD, ElementType.FIELD, ElementType.PARAMETER, ElementType.TYPE})
+@Retention (RetentionPolicy.RUNTIME)
+@Target ({ElementType.METHOD, ElementType.FIELD, ElementType.PARAMETER, ElementType.TYPE})
 public @interface Log {
 }
index f77715177ca66b275beb3a5f5c54b2420f090981..974cf73523f17cf44ce4a1da3052182777e95598 100644 (file)
@@ -26,13 +26,6 @@ import javax.ejb.Local;
 @Local
 public interface LoggerBeanLocal {
 
-       /**
-        * Log an exception
-        *
-        * @param throwable Thrown exception
-        */
-       public void logException (final Throwable throwable);
-
        /**
         * Log a debug message
         *
@@ -41,40 +34,41 @@ public interface LoggerBeanLocal {
        public void logDebug (final String message);
 
        /**
-        * Log a trace message
+        * Log a debug message and cause
         *
         * @param message Message to log
+        * @param cause Causing exception
         */
-       public void logTrace (final String message);
+       public void logDebug (final String message, final Throwable cause);
 
        /**
-        * Log a info message
+        * Log an exception
         *
-        * @param message Message to log
+        * @param throwable Thrown exception
         */
-       public void logInfo (final String message);
+       public void logException (final Throwable throwable);
 
        /**
-        * Log a warning message
+        * Log a fatal message
         *
         * @param message Message to log
         */
-       public void logWarning (final String message);
+       public void logFatal (final String message);
 
        /**
-        * Log a fatal message
+        * Log a fatal message and cause
         *
         * @param message Message to log
+        * @param cause Causing exception
         */
-       public void logFatal (final String message);
+       public void logFatal (final String message, final Throwable cause);
 
        /**
-        * Log a trace message and cause
+        * Log a info message
         *
         * @param message Message to log
-        * @param cause Causing exception
         */
-       public void logTrace (final String message, final Throwable cause);
+       public void logInfo (final String message);
 
        /**
         * Log a info message and cause
@@ -85,26 +79,32 @@ public interface LoggerBeanLocal {
        public void logInfo (final String message, final Throwable cause);
 
        /**
-        * Log a debug message and cause
+        * Log a trace message
         *
         * @param message Message to log
-        * @param cause Causing exception
         */
-       public void logDebug (final String message, final Throwable cause);
+       public void logTrace (final String message);
 
        /**
-        * Log a warning message and cause
+        * Log a trace message and cause
         *
         * @param message Message to log
         * @param cause Causing exception
         */
-       public void logWarning (final String message, final Throwable cause);
+       public void logTrace (final String message, final Throwable cause);
 
        /**
-        * Log a fatal message and cause
+        * Log a warning message
+        *
+        * @param message Message to log
+        */
+       public void logWarning (final String message);
+
+       /**
+        * Log a warning message and cause
         *
         * @param message Message to log
         * @param cause Causing exception
         */
-       public void logFatal (final String message, final Throwable cause);
+       public void logWarning (final String message, final Throwable cause);
 }