Coverage Report - com.aragost.javahg.log.JULLoggerFactory
 
Classes in this File Line Coverage Branch Coverage Complexity
JULLoggerFactory
100%
2/2
N/A
1
 
 1  
 /*
 2  
  * To change this template, choose Tools | Templates
 3  
  * and open the template in the editor.
 4  
  */
 5  
 package com.aragost.javahg.log;
 6  
 
 7  
 /**
 8  
  *
 9  
  * @author Sebastian Sdorra
 10  
  */
 11  1
 public class JULLoggerFactory extends LoggerFactory
 12  
 {
 13  
 
 14  
   @Override
 15  
   protected Logger getLoggerInstance(Class<?> cls)
 16  
   {
 17  8
     return new JULLogger(cls.getName());
 18  
   }
 19  
   
 20  
 }