1 23 24 package com.sun.jdo.spi.persistence.support.sqlstore; 25 26 import com.sun.jdo.spi.persistence.utility.logging.Logger; 27 import com.sun.jdo.spi.persistence.utility.logging.LogHelper; 28 29 34 public class LogHelperTransaction { 35 36 38 protected static final String componentName = "transaction"; 40 42 protected static final ClassLoader loader = LogHelperTransaction.class.getClassLoader(); 43 44 46 protected static final String bundleName = "com.sun.jdo.spi.persistence.support.sqlstore.Bundle"; 49 51 public static Logger getLogger() { 52 return LogHelper.getLogger (componentName, bundleName, loader); 53 } 54 55 } 56 | Popular Tags |