Browse Source

Reduce log spam

v2.0-beta
CalDescent 3 years ago
parent
commit
9bcd0bbfac
  1. 2
      src/main/java/org/qortal/repository/hsqldb/HSQLDBRepository.java

2
src/main/java/org/qortal/repository/hsqldb/HSQLDBRepository.java

@ -1050,7 +1050,7 @@ public class HSQLDBRepository implements Repository {
long startTime = System.currentTimeMillis(); long startTime = System.currentTimeMillis();
while (this.otherTransactionsCount() > 0) { while (this.otherTransactionsCount() > 0) {
// Wait and try again // Wait and try again
LOGGER.info("Waiting for repository..."); LOGGER.debug("Waiting for repository...");
Thread.sleep(1000L); Thread.sleep(1000L);
if (timeout != null) { if (timeout != null) {

Loading…
Cancel
Save