* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- *
+ *
* http://www.apache.org/licenses/LICENSE-2.0
- *
+ *
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
setLogTimestamp();
setElapsedTime();
MDC.put(ONAPLogConstants.MDCs.PARTNER_NAME, partnerName);
- logger.info(ONAPLogConstants.Markers.ENTRY, "Entering");
+ logger.debug(ONAPLogConstants.Markers.ENTRY, "Entering");
} catch (Exception e) {
logger.warn("Error in ScheduledTasksMDCSetup: {}", e.getMessage());
}
setStatusCode();
setLogTimestamp();
setElapsedTime();
- logger.info(ONAPLogConstants.Markers.EXIT, "Exiting.");
+ logger.debug(ONAPLogConstants.Markers.EXIT, "Exiting.");
} catch (Exception e) {
logger.warn("Error in ScheduledTasksMDCSetup clear MDC: {}", e.getMessage());
}
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- *
+ *
* http://www.apache.org/licenses/LICENSE-2.0
- *
+ *
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
protected void logRequest(HttpRequest request, byte[] body) throws IOException {
if (logger.isDebugEnabled()) {
- logger.debug("===========================request begin================================================");
- logger.debug("URI : {}", request.getURI());
- logger.debug("Method : {}", request.getMethod());
- logger.debug("Headers : {}", request.getHeaders());
- logger.debug("Request body: {}", new String(body, StandardCharsets.UTF_8));
- logger.debug("==========================request end================================================");
+ logger.debug("===========================request begin=============================================");
+ logger.debug("URI : {} {}", request.getMethod(), request.getURI());
+ logger.debug("Headers : {}", request.getHeaders());
+ logger.debug("Request body : {}", new String(body, StandardCharsets.UTF_8));
+ logger.debug("===========================request end===============================================");
}
}
protected void logResponse(ClientHttpResponse response) throws IOException {
if (logger.isDebugEnabled()) {
- logger.debug("============================response begin==========================================");
+ logger.debug("===========================response begin============================================");
logger.debug("Status code : {}", response.getStatusCode());
- logger.debug("Status text : {}", response.getStatusText());
logger.debug("Headers : {}", response.getHeaders());
logger.debug("Response body: {}", StreamUtils.copyToString(response.getBody(), Charset.defaultCharset()));
- logger.debug("=======================response end=================================================");
+ logger.debug("===========================response end==============================================");
}
}