Revert unintentional no-op log handler attachment

This snuck in from [] but was just a vestige of when I was testing with the tests still in FlowRunner test and wanted to make sure they still passed with the logging moved to FlowReporter.  Now that the tests are in FlowReporterTest and FlowReporter is mocked out here, attaching the handler to that logger is a no-op.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=154601472
This commit is contained in:
nickfelt 2017-04-28 17:21:27 -07:00 committed by Ben McIlwain
parent 876552f1ce
commit f9df4cf3f1

View file

@ -72,7 +72,6 @@ public class FlowRunnerTest extends ShardableTestCase {
@Before @Before
public void before() { public void before() {
Logger.getLogger(FlowRunner.class.getCanonicalName()).addHandler(handler); Logger.getLogger(FlowRunner.class.getCanonicalName()).addHandler(handler);
Logger.getLogger(FlowReporter.class.getCanonicalName()).addHandler(handler);
flowRunner.clientId = "TheRegistrar"; flowRunner.clientId = "TheRegistrar";
flowRunner.credentials = new PasswordOnlyTransportCredentials(); flowRunner.credentials = new PasswordOnlyTransportCredentials();
flowRunner.eppRequestSource = EppRequestSource.UNIT_TEST; flowRunner.eppRequestSource = EppRequestSource.UNIT_TEST;