Author | Message |
---|---|
migcov
Posts: 10
|
Posted 18:03 Apr 07, 2009 |
I'm not sure why but log4j is giving me an error when I run the project. Project runs fine but error is generated and no log file is written. I noticed it says the following:
log4j:ERROR setFile(null,true) call failed.
java.io.FileNotFoundException : F:\Temp\csns\csns-app.log, but I changed the path for my CS520 folder as C:/CS520/csns. I also noticed when I run the project, no log file is created. |
vishalmohite
Posts: 5
|
Posted 18:31 Apr 07, 2009 |
Though you have your log directory set to C:/CS520/csns in build.properties , it is not reflected in the file ../workspace/csns/build/log4j.xml |
cysun
Posts: 2935
|
Posted 20:03 Apr 07, 2009 |
vishalmohite is correct. To fix it, delete build/classes/log4j.xml, refresh the project (a new log4j.xml will be created), then run the project again. Last edited by cysun at
20:06 Apr 07, 2009.
|
migcov
Posts: 10
|
Posted 20:43 Apr 07, 2009 |
Gentlemen, thank you both, that fixed the problem.
|