Changeset 8a69dc0
- Timestamp:
- Jun 2, 2015 8:44:10 PM (6 years ago)
- Branches:
- master
- Children:
- 07627152
- Parents:
- 39dc60c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
router/java/src/net/i2p/router/networkdb/reseed/ReseedChecker.java
r39dc60c r8a69dc0 32 32 private volatile String _lastStatus = ""; 33 33 private volatile String _lastError = ""; 34 private volatile boolean _networkLogged; 34 35 35 36 public static final int MINIMUM = 50; … … 80 81 if (!noReseedFile.exists() && !noReseedFileAlt1.exists() && !noReseedFileAlt2.exists() && !noReseedFileAlt3.exists()) { 81 82 if (!Addresses.isConnected()) { 82 _log.logAlways(Log.WARN, "Cannot reseed, no network connection"); 83 if (!_networkLogged) { 84 _log.logAlways(Log.WARN, "Cannot reseed, no network connection"); 85 _networkLogged = true; 86 } 83 87 return false; 84 88 } 89 _networkLogged = false; 85 90 if (count <= 1) 86 91 _log.logAlways(Log.INFO, "Downloading peer router information for a new I2P installation");
Note: See TracChangeset
for help on using the changeset viewer.