HHH-6274 : Logging format error causes many test failures

This commit is contained in:
Gail Badner 2011-05-27 15:43:06 -07:00
parent b11dafbc26
commit 792c85a053
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ public class DefaultIdentifierGeneratorFactory implements IdentifierGeneratorFac
}
public void register(String strategy, Class generatorClass) {
LOG.debugf( "Registering IdentifierGenerator strategy [%s] -> [%s]" + strategy + "] -> [" + generatorClass.getName() + "]" );
LOG.debugf( "Registering IdentifierGenerator strategy [%s] -> [%s]", strategy, generatorClass.getName() );
final Class previous = generatorStrategyToClassNameMap.put( strategy, generatorClass );
if ( previous != null ) {
LOG.debugf( " - overriding [%s]", previous.getName() );