Add extra logging for tests.

This commit is contained in:
2025-01-26 18:50:27 +04:00
parent ddcb6b6d5d
commit 75e5874dc2

View File

@@ -38,6 +38,8 @@ export class VKIDController {
const result = await this.vkidService.oauth(oAuthRequestDto);
if (!result) throw new NotAcceptableException("OAuth process failed");
console.log("Access token exchanged!", result.accessToken);
return result;
}
}