diff --git a/api/src/com/cloud/api/response/AsyncJobResponse.java b/api/src/com/cloud/api/response/AsyncJobResponse.java index 985acf01969..466c3dc42eb 100644 --- a/api/src/com/cloud/api/response/AsyncJobResponse.java +++ b/api/src/com/cloud/api/response/AsyncJobResponse.java @@ -30,7 +30,6 @@ import com.google.gson.annotations.SerializedName; @SuppressWarnings("unused") public class AsyncJobResponse extends BaseResponse { - private static final Logger s_logger = Logger.getLogger(AsyncJobResponse.class.getName()); @SerializedName("accountid") @Param(description="the account that executed the async command") private IdentityProxy accountId = new IdentityProxy("account"); @@ -132,7 +131,6 @@ public class AsyncJobResponse extends BaseResponse { } else if (jobInstanceType.equalsIgnoreCase(AsyncJob.Type.User.toString())) { this.jobInstanceId.setTableName("user"); } else if (!jobInstanceType.equalsIgnoreCase(AsyncJob.Type.None.toString())){ - s_logger.warn("Failed to get async job instanceId for job instance type " + jobInstanceType); // TODO : when we hit here, we need to add instanceType -> UUID entity table mapping assert(false); }