From 72894253aedcdc2f01a3c69e75c222103457f2ec Mon Sep 17 00:00:00 2001 From: nickfelt Date: Thu, 11 Aug 2016 12:11:02 -0700 Subject: [PATCH] Downgrade undeclared extension log message to INFO ECatcher seems to trigger on warnings, even if no exception is thrown (?). This warning doesn't really need to be a warning if it's WAI and not something we're actually going to bother to reach out to registrars about (in this case, 101domain apparently isn't declaring the launch extension, but we let them use it anyway). If at some point we decide to be stricter about declaring extensions and want to go determine how often this is happening, making it INFO vs WARNING doesn't make that any harder. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=130016606 --- java/google/registry/flows/LoggedInFlow.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/google/registry/flows/LoggedInFlow.java b/java/google/registry/flows/LoggedInFlow.java index 94032a568..f797d46f0 100644 --- a/java/google/registry/flows/LoggedInFlow.java +++ b/java/google/registry/flows/LoggedInFlow.java @@ -87,7 +87,7 @@ public abstract class LoggedInFlow extends Flow { if (!undeclaredUrisThatError.isEmpty()) { throw new UndeclaredServiceExtensionException(undeclaredUrisThatError); } else { - logger.warningfmt( + logger.infofmt( "Client (%s) is attempting to run flow (%s) without declaring URIs %s on login", getClientId(), getClass().getSimpleName(), undeclaredUris); }