Remove extra logging

This commit is contained in:
nvazquez 2022-08-15 10:34:27 -03:00
parent 15b740d397
commit 681e463f2a
No known key found for this signature in database
GPG Key ID: 656E1BCC8CB54F84
1 changed files with 0 additions and 7 deletions

View File

@ -32,7 +32,6 @@ import org.apache.cloudstack.api.BaseAsyncCreateCmd;
import org.apache.cloudstack.api.BaseAsyncCustomIdCmd;
import org.apache.cloudstack.api.BaseCmd;
import org.apache.cloudstack.api.BaseCustomIdCmd;
import org.apache.cloudstack.api.command.user.consoleproxy.CreateConsoleEndpointCmd;
import org.apache.cloudstack.context.CallContext;
import org.apache.cloudstack.framework.jobs.AsyncJob;
import org.apache.cloudstack.framework.jobs.AsyncJobManager;
@ -159,12 +158,6 @@ public class ApiDispatcher {
((BaseAsyncCustomIdCmd)cmd).checkUuid();
} else if (cmd instanceof BaseCustomIdCmd) {
((BaseCustomIdCmd)cmd).checkUuid();
} else if (cmd instanceof CreateConsoleEndpointCmd) {
Map<String, String> fullUrlParams = ((CreateConsoleEndpointCmd) cmd).getFullUrlParams();
s_logger.info("Console URL full params:");
for (String key : fullUrlParams.keySet()) {
s_logger.info(key + " : " + fullUrlParams.get(key));
}
}
cmd.execute();