Prevent StackOverflowError in JettyTreeLogger

getName() method was recursively calling itself

Change-Id: Ib56ac03562d414284683e8447ec604d63434efa4
Signed-off-by: Eryk Szymanski <eryksz@gmail.com>
This commit is contained in:
Eryk Szymanski 2014-02-03 23:53:05 +01:00 committed by David Pursehouse
parent 86fd992b32
commit f5f9fc8ce8
1 changed files with 1 additions and 1 deletions

View File

@ -202,7 +202,7 @@ public class GerritDebugLauncher extends ServletContainerLauncher {
@Override
public String getName() {
return this.getName();
return this.getClass().getName();
}
/**