log compress errors
This commit is contained in:
@ -1054,7 +1054,13 @@ public class DataHelper {
|
||||
// * (((double) orig.length) / ((double) rv.length)) + "% savings)");
|
||||
return rv;
|
||||
} catch (IOException ioe) {
|
||||
//_log.error("Error compressing?!", ioe);
|
||||
// Apache Harmony 5.0M13
|
||||
//java.io.IOException: attempt to write after finish
|
||||
//at java.util.zip.DeflaterOutputStream.write(DeflaterOutputStream.java:181)
|
||||
//at net.i2p.util.ResettableGZIPOutputStream.write(ResettableGZIPOutputStream.java:122)
|
||||
//at net.i2p.data.DataHelper.compress(DataHelper.java:1048)
|
||||
// ...
|
||||
ioe.printStackTrace();
|
||||
return null;
|
||||
} finally {
|
||||
ReusableGZIPOutputStream.release(out);
|
||||
|
@ -1,3 +1,11 @@
|
||||
2010-04-21 zzz
|
||||
* EepGet: Don't convert a MalformedURLException into
|
||||
an IOE so we recognize it when it's throuwn
|
||||
* ReusableGZIPStreams:
|
||||
- Concurrent
|
||||
- Workaround for Apache Harmony 5.0M13 Deflater bug
|
||||
* TrustedUpdate: Increase buf size for extraction
|
||||
|
||||
2010-04-18 zzz
|
||||
* configclients.jsp: Start button logic for clients was inverted
|
||||
* Console: IRC links in readmes and initialNews
|
||||
|
@ -18,7 +18,7 @@ public class RouterVersion {
|
||||
/** deprecated */
|
||||
public final static String ID = "Monotone";
|
||||
public final static String VERSION = CoreVersion.VERSION;
|
||||
public final static long BUILD = 14;
|
||||
public final static long BUILD = 15;
|
||||
|
||||
/** for example "-test" */
|
||||
public final static String EXTRA = "-rc";
|
||||
|
Reference in New Issue
Block a user