Remove useless createdRepoId from logging

It is no longer needed since we don't do log-replay and it's
annoying to support in the flat flows.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=135805088
This commit is contained in:
cgoldfeder 2016-10-11 09:34:01 -07:00 committed by Ben McIlwain
parent 2d518ed666
commit c59227bb76
5 changed files with 0 additions and 35 deletions

View file

@ -128,7 +128,6 @@ public class FlowRunner {
}
});
logger.info("EPP_Mutation_Committed " + new JsonLogStatement(trid)
.add("createdRepoId", flowResult.getResponse().getCreatedRepoId())
.add("executionTime", flowResult.getResponse().getExecutionTime().getMillis()));
return flowResult;
} catch (DryRunException e) {
@ -165,9 +164,6 @@ public class FlowRunner {
*
* <p>An example output for an EPP_Mutation_Committed that doesn't create a new resource:
* {"trid":"abc-123", "executionTime":123456789}
*
* <p>An example output for an EPP_Mutation_Committed that creates a new resource:
* {"trid":"abc-123", "executionRepoId":123, "executionTime":123456789}
*/
private static class JsonLogStatement {