Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@777 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
allo committed Sep 22, 2005
1 parent de0a58d commit 4aa0497
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions source/yacy.java
Expand Up @@ -185,6 +185,10 @@ private static void startup(String homePath, long startupMemFree, long startupMe
// setting up logging
if (!((new File(homePath, "DATA/LOG/yacy.logging")).exists())) try {
serverFileUtils.copy(new File(homePath, "yacy.logging"), new File(homePath, "DATA/LOG/yacy.logging"));
}catch (IOException e){
System.out.println("could not copy yacy.logging");
}
try{
serverLog.configureLogging(new File(homePath, "DATA/LOG/yacy.logging"));
} catch (IOException e) {
System.out.println("could not find logging properties in homePath=" + homePath);
Expand Down

0 comments on commit 4aa0497

Please sign in to comment.