Merge pull request #146 from Tria-plc/feat/payment-microservice

Update payment-client.service.ts
This commit is contained in:
Abubeker Yasin
2026-06-13 10:49:10 +03:00
committed by GitHub

View File

@@ -56,7 +56,9 @@ export class PaymentClientService {
body?: unknown, body?: unknown,
): Promise<T> { ): Promise<T> {
const url = `${this.baseUrl}${path}`; const url = `${this.baseUrl}${path}`;
this.logger.log(url); this.logger.log("=====================================================================");
this.logger.log(`URL ${url}`);
this.logger.log("=====================================================================");
try { try {
const response = await firstValueFrom( const response = await firstValueFrom(
this.http.request<T>({ this.http.request<T>({