* logs.jsp: Remove unused connection log, cut wrapper log output in half
* configlogging.jsp: Increase box width
This commit is contained in:
@ -52,7 +52,7 @@ public class ConfigLoggingHelper {
|
|||||||
sortedLogs.add(prefix);
|
sortedLogs.add(prefix);
|
||||||
}
|
}
|
||||||
|
|
||||||
buf.append("<textarea name=\"levels\" rows=\"20\" cols=\"70\">");
|
buf.append("<textarea name=\"levels\" rows=\"20\" cols=\"90\">");
|
||||||
for (Iterator iter = sortedLogs.iterator(); iter.hasNext(); ) {
|
for (Iterator iter = sortedLogs.iterator(); iter.hasNext(); ) {
|
||||||
String prefix = (String)iter.next();
|
String prefix = (String)iter.next();
|
||||||
String level = limits.getProperty(prefix);
|
String level = limits.getProperty(prefix);
|
||||||
|
@ -58,7 +58,7 @@ public class LogsHelper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public String getServiceLogs() {
|
public String getServiceLogs() {
|
||||||
String str = FileUtil.readTextFile("wrapper.log", 500, false);
|
String str = FileUtil.readTextFile("wrapper.log", 250, false);
|
||||||
if (str == null)
|
if (str == null)
|
||||||
return "";
|
return "";
|
||||||
else {
|
else {
|
||||||
|
@ -16,13 +16,10 @@
|
|||||||
<h4>Router logs:</h4>
|
<h4>Router logs:</h4>
|
||||||
<jsp:getProperty name="logsHelper" property="logs" />
|
<jsp:getProperty name="logsHelper" property="logs" />
|
||||||
<hr />
|
<hr />
|
||||||
<h4>Connection logs:</h4><a name="connectionlogs"> </a>
|
|
||||||
<jsp:getProperty name="logsHelper" property="connectionLogs" />
|
|
||||||
<hr />
|
|
||||||
<h4>Critical logs:</h4><a name="criticallogs"> </a>
|
<h4>Critical logs:</h4><a name="criticallogs"> </a>
|
||||||
<jsp:getProperty name="logsHelper" property="criticalLogs" />
|
<jsp:getProperty name="logsHelper" property="criticalLogs" />
|
||||||
<hr />
|
<hr />
|
||||||
<h4>Service logs:</h4><a name="servicelogs"> </a>
|
<h4>Service (Wrapper) logs:</h4><a name="servicelogs"> </a>
|
||||||
<jsp:getProperty name="logsHelper" property="serviceLogs" />
|
<jsp:getProperty name="logsHelper" property="serviceLogs" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
21
history.txt
21
history.txt
@ -1,4 +1,23 @@
|
|||||||
2008-09-11 zzz
|
2008-09-15 zzz
|
||||||
|
* FloodOnlySearchJob:
|
||||||
|
- Ask non-floodfill peers if we don't know any floodfills
|
||||||
|
- Lookup hashes in the DatabaseSearchReplyMessage if we
|
||||||
|
don't know enough floodfills
|
||||||
|
* NetDb: Check new routers against blocklist
|
||||||
|
* Router: Shutdown clients first
|
||||||
|
* Throttle:
|
||||||
|
- Use 60s rather than 10m tunnel.participatingMessageCount stat
|
||||||
|
- Fix a summary bar message
|
||||||
|
* Tunnel Dispatcher: Update tunnel.participatingMessageCount
|
||||||
|
every 20s, rather than at tunnel expiration, to maintain
|
||||||
|
a more current stat
|
||||||
|
* Tunnel Pool:
|
||||||
|
- Prevent excess zero-hop tunnels
|
||||||
|
- Always wait before looping in BuildExecutor
|
||||||
|
* configlogging.jsp: Increase box width
|
||||||
|
* logs.jsp: Remove unused connection log, cut wrapper log output in half
|
||||||
|
|
||||||
|
2008-09-12 zzz
|
||||||
* Blocklist: Fix a log message format
|
* Blocklist: Fix a log message format
|
||||||
* HarvesterJob: Don't instantiate if disabled
|
* HarvesterJob: Don't instantiate if disabled
|
||||||
* i2psnark:
|
* i2psnark:
|
||||||
|
@ -17,7 +17,7 @@ import net.i2p.CoreVersion;
|
|||||||
public class RouterVersion {
|
public class RouterVersion {
|
||||||
public final static String ID = "$Revision: 1.548 $ $Date: 2008-06-07 23:00:00 $";
|
public final static String ID = "$Revision: 1.548 $ $Date: 2008-06-07 23:00:00 $";
|
||||||
public final static String VERSION = "0.6.3";
|
public final static String VERSION = "0.6.3";
|
||||||
public final static long BUILD = 4;
|
public final static long BUILD = 5;
|
||||||
public static void main(String args[]) {
|
public static void main(String args[]) {
|
||||||
System.out.println("I2P Router version: " + VERSION + "-" + BUILD);
|
System.out.println("I2P Router version: " + VERSION + "-" + BUILD);
|
||||||
System.out.println("Router ID: " + RouterVersion.ID);
|
System.out.println("Router ID: " + RouterVersion.ID);
|
||||||
|
Reference in New Issue
Block a user