Wrong log level

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

Former-commit-id: 0e568c2ace
This commit is contained in:
Sebastian Bazley 2013-09-09 07:33:29 +00:00
parent cfb9bb5303
commit 0202d3d09d
1 changed files with 2 additions and 2 deletions

View File

@ -151,11 +151,11 @@ public class ResultCollector extends AbstractListenerElement implements SampleLi
@Override
public void run() {
log.warn("Shutdown hook started");
log.info("Shutdown hook started");
synchronized (LOCK) {
flushFileOutput();
}
log.warn("Shutdown hook ended");
log.info("Shutdown hook ended");
}
}