Skip to content

Commit 134993d

Browse files
committed
remove logs
1 parent a73d63c commit 134993d

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

Assets/Thirdweb/Core/Scripts/AccountAbstraction/Core/BundlerClient.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ private static async Task<RpcResponseMessage> BundlerRequest(string url, string
4242
{
4343
using (HttpClient client = new HttpClient())
4444
{
45-
UnityEngine.Debug.Log($"Bundler Request: {method}({string.Join(", ", args)})");
45+
// UnityEngine.Debug.Log($"Bundler Request: {method}({string.Join(", ", args)})");
4646
RpcRequestMessage requestMessage = new RpcRequestMessage(requestId, method, args);
4747
string requestMessageJson = JsonConvert.SerializeObject(requestMessage);
4848

@@ -61,7 +61,7 @@ private static async Task<RpcResponseMessage> BundlerRequest(string url, string
6161
throw new Exception($"Bundler Request Failed. Error: {httpResponse.StatusCode} - {httpResponse.ReasonPhrase} - {await httpResponse.Content.ReadAsStringAsync()}");
6262

6363
var httpResponseJson = await httpResponse.Content.ReadAsStringAsync();
64-
UnityEngine.Debug.Log($"Bundler Response: {httpResponseJson}");
64+
// UnityEngine.Debug.Log($"Bundler Response: {httpResponseJson}");
6565

6666
var response = JsonConvert.DeserializeObject<RpcResponseMessage>(httpResponseJson);
6767
if (response.Error != null)

Assets/Thirdweb/Core/Scripts/Wallet.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,6 @@ public async Task<string> Verify(LoginPayload payload)
170170
if (validUser)
171171
{
172172
string recoveredAddress = await RecoverAddress(msg, signature);
173-
Debug.Log($"Recovered address: {recoveredAddress}");
174-
Debug.Log($"Message address: {siweMessage.Address}");
175173
if (recoveredAddress == siweMessage.Address)
176174
{
177175
if (siwe.IsMessageTheSameAsSessionStored(siweMessage))

0 commit comments

Comments
 (0)