com.payu.sdk.api.log.ApiLog Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-client Show documentation
Show all versions of api-client Show documentation
A fresh implementation of the PayU API Client for Android
The newest version!
package com.payu.sdk.api.log;
/** Simple logging abstraction for debug messages. */
public interface ApiLog {
static final String TAG = "PayU-Android-SDK";
/** ApiLog a debug message to the appropriate console. */
void log(String message);
}