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 public class JULLoggerFactory extends LoggerFactory
12 {
13
14 @Override
15 protected Logger getLoggerInstance(Class<?> cls)
16 {
17 return new JULLogger(cls.getName());
18 }
19
20 }