@@ -41,7 +41,7 @@ public ResponseEntity<CreateServiceInstanceResponse> createServiceInstance(
4141 ServiceDefinitionDoesNotExistException ,
4242 ServiceInstanceExistsException ,
4343 ServiceBrokerException , ServiceBrokerAsyncRequiredException {
44- logger .debug ("PUT: " + BASE_PATH + "/{instanceId}"
44+ logger .debug ("PUT: " + BASE_PATH + "/{instanceId}?accepts_incomplete=" + acceptsIncomplete
4545 + ", createServiceInstance(), serviceInstanceId = " + serviceInstanceId );
4646 ServiceDefinition svc = catalogService .getServiceDefinition (request .getServiceDefinitionId ());
4747 if (svc == null ) {
@@ -83,7 +83,7 @@ public ResponseEntity<?> deleteServiceInstance(
8383 @ RequestParam ("plan_id" ) String planId ,
8484 @ RequestParam (value ="accepts_incomplete" , required =false ) boolean acceptsIncomplete )
8585 throws ServiceBrokerException , ServiceBrokerAsyncRequiredException {
86- logger .debug ( "DELETE: " + BASE_PATH + "/{instanceId}"
86+ logger .debug ( "DELETE: " + BASE_PATH + "/{instanceId}?accepts_incomplete=" + acceptsIncomplete
8787 + ", deleteServiceInstanceBinding(), serviceInstanceId = " + instanceId
8888 + ", serviceId = " + serviceId
8989 + ", planId = " + planId );
@@ -107,7 +107,7 @@ public ResponseEntity<String> updateServiceInstance(
107107 ServiceInstanceUpdateNotSupportedException ,
108108 ServiceInstanceDoesNotExistException ,
109109 ServiceBrokerException , ServiceBrokerAsyncRequiredException {
110- logger .debug ("UPDATE: " + BASE_PATH + "/{instanceId}"
110+ logger .debug ("UPDATE: " + BASE_PATH + "/{instanceId}?accepts_incomplete=" + acceptsIncomplete
111111 + ", updateServiceInstanceBinding(), serviceInstanceId = "
112112 + instanceId + ", instanceId = " + instanceId + ", planId = "
113113 + request .getPlanId ());
0 commit comments