Info -> debug for initial version record message.

It's not that important. We already log a message indicating that we created
the table for the first time, which will always follow this message.
This commit is contained in:
Michael Bayne
2013-05-24 18:30:53 +00:00
parent 1bee1d0351
commit 952d01c55b
@@ -511,7 +511,7 @@ public class DepotMarshaller<T extends PersistentRecord> implements QueryMarshal
// determine whether or not this record has ever been seen
int currentVersion = _meta.getVersion(getTableName(), false);
if (currentVersion == -1) {
log.info("Creating initial version record for " + _pClass.getName() + ".");
log.debug("Creating initial version record for " + _pClass.getName() + ".");
// if not, create a version entry with version zero
_meta.initializeVersion(getTableName());
currentVersion = 0;