Skip to content

Commit

Permalink
fix logs
Browse files Browse the repository at this point in the history
  • Loading branch information
sleushunou committed Sep 25, 2024
1 parent a2ba49b commit 7a1b266
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Softeq.XToolkit.Common.iOS/Extensions/NSStringExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,16 +76,16 @@ public static NSMutableAttributedString BuildAttributedStringFromHtml(
logger?.Error(ex);
if (html == null)
{
logger?.Info("String: null");
logger?.Error("String: null");
}
else
{
logger?.Info("String: " + html);
logger?.Error("String: " + html);
}

if (error != null)
{
logger?.Info("Error message: " + error.Description);
logger?.Error("Error message: " + error.Description);
}

throw;
Expand Down

0 comments on commit 7a1b266

Please sign in to comment.