*/
protected void logConfiguration()
{
if (NucleusLogger.DATASTORE.isDebugEnabled())
{
PersistenceConfiguration conf = omfContext.getPersistenceConfiguration();
NucleusLogger.DATASTORE.debug("======================= Datastore =========================");
NucleusLogger.DATASTORE.debug("StoreManager : \"" + storeManagerKey + "\" (" + getClass().getName() + ")");
if (autoStartMechanism != null)
{
String classNames = conf.getStringProperty("datanucleus.autoStartClassNames");
NucleusLogger.DATASTORE.debug("AutoStart : mechanism=" + autoStartMechanism +
", mode=" + conf.getStringProperty("datanucleus.autoStartMechanismMode") +
((classNames != null) ? (", classes=" + classNames) : ""));
}
String url = omfContext.getPersistenceConfiguration().getStringProperty("datanucleus.ConnectionURL");
NucleusLogger.DATASTORE.debug(LOCALISER.msg("032020", storeManagerKey, url,
(readOnlyDatastore ? "read-only" : "read-write"), (fixedDatastore ? ", fixed" : "")));