Skip to content

Commit

Permalink
[DIA-3263] Removed redundant imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Nevazhnovu committed Jan 25, 2024
1 parent 9da560f commit 0426bfb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
using System.IO;
using NewtonsoftJson = Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using UnityEngine;

namespace ConsentManagementProviderLib.Json
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ public static void Broadcast<T>(params object[] list) where T : IConsentEventHan
case nameof(IOnConsentError):
Exception exception= (Exception)list[0];

Debug.LogError("Error message: " + exception.Message);
Debug.LogError("Stack Trace: " + exception.StackTrace);
CmpDebugUtil.LogError("Error message: " + exception.Message);
CmpDebugUtil.LogError("Stack Trace: " + exception.StackTrace);

BroadcastEventDispatcher.Execute<IOnConsentError>(null, (i, d) => i.OnConsentError(exception));
break;
Expand Down

0 comments on commit 0426bfb

Please sign in to comment.