Skip to content

Commit e927d24

Browse files
committed
info -> debug
1 parent d405af7 commit e927d24

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

api/src/org/labkey/api/exp/OntologyManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1372,7 +1372,7 @@ public static void deleteAllObjects(Container c, User user) throws ValidationExc
13721372
String deleteObjPropSql = "DELETE FROM " + getTinfoObjectProperty() + " WHERE ObjectId IN (SELECT ObjectId FROM " + getTinfoObject() + " WHERE Container = ?)";
13731373
executor.execute(deleteObjPropSql, c);
13741374
String deleteObjSql = "DELETE FROM " + getTinfoObject() + " WHERE Container = ?";
1375-
_log.info("Deleting from exp.object in container {}", c);
1375+
_log.debug("Deleting from exp.object in container {}", c);
13761376
executor.execute(deleteObjSql, c);
13771377

13781378
// delete property validator references on property descriptors

experiment/src/org/labkey/experiment/api/ExperimentServiceImpl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5595,10 +5595,10 @@ public void deleteAllExpObjInContainer(Container c, User user) throws Experiment
55955595
// same drill for data objects
55965596
sql = "SELECT RowId FROM exp.Data WHERE Container = ?";
55975597
Collection<Long> dataIds = new SqlSelector(getExpSchema(), sql, c).getCollection(Long.class);
5598-
LOG.info("Deleting {} dataIds {} ", dataIds.size(), dataIds);
5598+
LOG.debug("Deleting {} dataIds {} ", dataIds.size(), dataIds);
55995599
deleteDataByRowIds(user, c, dataIds);
56005600

5601-
LOG.info("Deleting objects from container {}", c);
5601+
LOG.debug("Deleting objects from container {}", c);
56025602
OntologyManager.deleteAllObjects(c, user);
56035603

56045604
transaction.commit();

0 commit comments

Comments
 (0)