log clean

This commit is contained in:
MooN 2026-01-15 20:11:00 +06:30
parent 98c94ec2d3
commit 042fe6307e
2 changed files with 2 additions and 2 deletions

View File

@ -288,7 +288,7 @@ public class NetworkModule {
}
// String baseUrl = tmsAddress.trim() + "/api/v1/"; //for on prim
String baseUrl = tmsAddress.trim() + "/"; //for uat
String baseUrl = tmsAddress.trim() + "/"; //for uat and prod
final Gson gson =
new GsonBuilder().create();

View File

@ -120,7 +120,7 @@ public class Repository {
}
public Observable<EReceiptResponse> sendReceipt(Object body){
String apiSecret = BuildConfig.ERECEIPT_SECRET;
LogUtil.d("kmk", "receipt secret =>" + apiSecret);
// LogUtil.d("kmk", "receipt secret =>" + apiSecret);
String timestamp = String.valueOf(System.currentTimeMillis());
String bodyString = new Gson().toJson(body);
String dataToHash = bodyString + apiSecret + timestamp;