changed "patched wrong" to warning, so it goes to the logfile

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4716 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
danielr 17 years ago
parent 2f629d20a7
commit 48ffd61e6a

@ -1,6 +1,6 @@
# defining some compiler arguments
javacSource=1.5
javacTarget=1.5
javacTarget=1.6
# Release Configuration
releaseVersion=0.579
@ -17,4 +17,4 @@ accessRightsFile=644
# Extension Configuration: singleZip|multiZip|copyToMain
extensionMode=singleZip
extensionFile=yacy_libx_v${releaseVersion}_${DSTAMP}_${releaseNr}.tar.gz
extensionFile=yacy_libx_v${releaseVersion}_${DSTAMP}_${releaseNr}.tar.gz

@ -70,7 +70,8 @@ server.maxTrackingTime = 3600000
# The property here can also be a url where the definition can be loaded.
# In case of privately managed networks, this configuration must be changed BEFORE it is released
# to the members of the separated network peers.
network.unit.definition = defaults/yacy.network.freeworld.unit
#network.unit.definition = defaults/yacy.network.freeworld.unit
network.unit.definition = defaults/yacy.network.intranet.unit
network.group.definition = defaults/yacy.network.group
# Update process properties

@ -322,7 +322,7 @@ public class kelondroRowCollection {
assert (alength > 0);
assert (astart + alength <= a.length);
if (bugappearance(a, astart, alength)) {
System.out.println("*** DEBUG warning: wrong a = " + serverLog.arrayList(a, astart, alength));
serverLog.logWarning("RowCollection", "wrong a = " + serverLog.arrayList(a, astart, alength));
//return false; // TODO: this is temporary; remote peers may still submit bad entries
}
assert (!(bugappearance(a, astart, alength))) : "a = " + serverLog.arrayList(a, astart, alength);
@ -991,4 +991,4 @@ public class kelondroRowCollection {
System.out.println(daysSince2000(System.currentTimeMillis()));
*/
}
}
}

Loading…
Cancel
Save