Safer to log the strings

git-svn-id: https://svn.apache.org/repos/asf/jakarta/jmeter/trunk@581255 13f79535-47bb-0310-9956-ffa450edef68

Former-commit-id: fdf5e65886
This commit is contained in:
Sebastian Bazley 2007-10-02 14:17:41 +00:00
parent b847afc922
commit c13aaf7c94
1 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@ public class FileServer {
private FileServer() {
base = new File(DEFAULT_BASE);
log.info("Default base="+base.getPath());
log.info("Default base="+DEFAULT_BASE);
}
public static FileServer getFileServer() {
@ -93,7 +93,7 @@ public class FileServer {
if (!base.isDirectory()) {
base = base.getParentFile();
}
log.info("Set new base="+base.getPath());
log.info("Set new base="+basedir);
}
}