com.bitpay.sdk.logger.Slf4jLogger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bitpay_sdk Show documentation
Show all versions of bitpay_sdk Show documentation
Full implementation of the BitPay Payment Gateway. This library implements BitPay's Cryptographically
Secure RESTful API.
The newest version!
/*
* Copyright (c) 2019 BitPay.
* All rights reserved.
*/
//package com.bitpay.sdk.logger;
//
//import org.slf4j.LoggerFactory;
//
//public class Slf4jLogger implements BitPayLogger {
//
// private static final org.slf4j.Logger logger = LoggerFactory.getLogger(Slf4jLogger.class);
//
// @Override
// public void logRequest(String method, String endpoint, String json) {
// logger.info("Request method: " + method + " Endpoint: " + endpoint + " Json: " + json);
// }
//
// @Override
// public void logResponse(String method, String endpoint, String json) {
// logger.info("Response method: " + method + " Endpoint: " + endpoint + " Json: " + json);
// }
//
// @Override
// public void logError(String message) {
// logger.error(message);
// }
//}