mirror of https://github.com/apache/jmeter.git
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:
parent
b847afc922
commit
c13aaf7c94
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue