propagate from branch 'i2p.i2p.zzz.test3' (head f18425568ef4ef20f5054f6fb133cf217bfab485)

to branch 'i2p.i2p' (head 36f4774eb9dd538b3a7c314de79a6fb3bc4df813)
This commit is contained in:
zzz
2009-09-04 15:14:36 +00:00
5 changed files with 51 additions and 32 deletions

View File

@ -196,7 +196,10 @@ class LogWriter implements Runnable {
_rotationNum++;
if (_rotationNum > max) _rotationNum = 0;
return new File(replace(pattern, _rotationNum));
String newf = replace(pattern, _rotationNum);
if (base != null)
return new File(base, newf);
return new File(newf);
}
/**