Convenience method to return a named logger, without the application having to care about factories. @param clazz Class from which a log name will be derived @return A log instance with a name of clazz.getName() @exception LogConfigurationException if a suitable Log instance cannot b
(Class<?> clazz)
| 182 | * @exception LogConfigurationException if a suitable <code>Log</code> instance cannot be returned |
| 183 | */ |
| 184 | public static Log getLog(Class<?> clazz) throws LogConfigurationException { |
| 185 | return getFactory().getInstance(clazz); |
| 186 | } |
| 187 | |
| 188 | |
| 189 | /** |