(no commit message)
[utils] / test / enterprise / src / main / java / org / wamblee / test / persistence / LoggingTransactionResultCallback.java
index 42d37e48f1a04e2bd254b74d58e9792fb4217c5c..a46ca18b0e1b772434477dec789bcc290cb83880 100644 (file)
@@ -12,7 +12,7 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- */ 
+ */
 package org.wamblee.test.persistence;
 
 import java.util.logging.Level;
@@ -22,22 +22,24 @@ import org.wamblee.test.transactions.TransactionResult;
 
 /**
  * Logging the result of a transaction.
+ * 
  * @author Erik Brakkee
- *
+ * 
  */
 public class LoggingTransactionResultCallback implements
     TransactionResultCallback {
-    
-    private static final Logger LOGGER = Logger.getLogger(LoggingTransactionResultCallback.class.getName());
-    
-    private Level level; 
-    
-    public LoggingTransactionResultCallback(Level aLevel) { 
-        level = aLevel; 
+
+    private static final Logger LOGGER = Logger
+        .getLogger(LoggingTransactionResultCallback.class.getName());
+
+    private Level level;
+
+    public LoggingTransactionResultCallback(Level aLevel) {
+        level = aLevel;
     }
 
     @Override
     public void status(TransactionResult aResult) {
-        LOGGER.log(level, "Transaction result " + aResult);   
+        LOGGER.log(level, "Transaction result " + aResult);
     }
 }