changed log level of GetTypeForFactoryObject to WARN for factory object instantiation problems

This commit is contained in:
eeichinger
2009-12-10 15:25:33 +00:00
parent 260b6cc718
commit fa8c1da678

View File

@@ -722,7 +722,7 @@ namespace Spring.Objects.Factory.Support
catch (ObjectCreationException ex)
{
// Can only happen when getting a FactoryObject.
log.Debug("Ignoring object creation exception on FactoryObject type check", ex);
log.Warn("Ignoring object creation exception on FactoryObject type check", ex);
return null;
}
}