Added log msg for loading of ldif files.

This commit is contained in:
Luke Taylor 2007-12-06 00:14:25 +00:00
parent a1abcc39d2
commit ab23fe56ad

View File

@ -159,6 +159,7 @@ class ApacheDSContainer implements InitializingBean, DisposableBean, Lifecycle,
if(ldifs != null && ldifs.length > 0) {
try {
String ldifFile = ldifs[0].getFile().getAbsolutePath();
logger.info("Loading LDIF file: " + ldifFile);
LdifFileLoader loader = new LdifFileLoader(dirContext, ldifFile);
loader.execute();
} finally {