* logs.jsp: Remove unused connection log, cut wrapper log output in half

* configlogging.jsp: Increase box width
This commit is contained in:
zzz
2008-09-15 16:23:47 +00:00
parent 50f10e8cf1
commit 7c083ed33b
5 changed files with 24 additions and 8 deletions

View File

@ -52,7 +52,7 @@ public class ConfigLoggingHelper {
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(); ) {
String prefix = (String)iter.next();
String level = limits.getProperty(prefix);

View File

@ -58,7 +58,7 @@ public class LogsHelper {
}
public String getServiceLogs() {
String str = FileUtil.readTextFile("wrapper.log", 500, false);
String str = FileUtil.readTextFile("wrapper.log", 250, false);
if (str == null)
return "";
else {