*) Bugfix for ProxyAccess Logger

URL was accidentally logged without the parameters  

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@604 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
theli 19 years ago
parent 9b818b1ce3
commit e3aa3a2d75

@ -1223,8 +1223,13 @@ public final class httpdProxyHandler extends httpdAbstractHandler implements htt
this.logMessage.append(' ');
// URL
String requestURL = this.connectionProperties.getProperty(httpd.CONNECTION_PROP_URL);
String requestURL = this.connectionProperties.getProperty(httpd.CONNECTION_PROP_URL);
String requestArgs = this.connectionProperties.getProperty(httpd.CONNECTION_PROP_ARGS);
this.logMessage.append(requestURL);
if (requestArgs != null) {
this.logMessage.append("?")
.append(requestArgs);
}
this.logMessage.append(' ');
// Rfc931

Loading…
Cancel
Save