From d5def480a15ef11ed4ab30f8fc74a6d8528ab035 Mon Sep 17 00:00:00 2001 From: Anna Date: Sat, 15 Apr 2023 14:53:59 -0400 Subject: [PATCH] chore: remove debug log --- ExpandedSearchInfo/GameFunctions.cs | 1 - ExpandedSearchInfo/SearchInfoRepository.cs | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/ExpandedSearchInfo/GameFunctions.cs b/ExpandedSearchInfo/GameFunctions.cs index 4e6d4d0..8039887 100644 --- a/ExpandedSearchInfo/GameFunctions.cs +++ b/ExpandedSearchInfo/GameFunctions.cs @@ -33,7 +33,6 @@ namespace ExpandedSearchInfo { try { // Updated: 4.5 var actorId = *(uint*) (data + 48); - PluginLog.Log($"actorId: {actorId:x8}"); var searchInfo = Util.ReadRawSeString(searchInfoPtr); diff --git a/ExpandedSearchInfo/SearchInfoRepository.cs b/ExpandedSearchInfo/SearchInfoRepository.cs index 631c113..30579b2 100644 --- a/ExpandedSearchInfo/SearchInfoRepository.cs +++ b/ExpandedSearchInfo/SearchInfoRepository.cs @@ -87,7 +87,7 @@ namespace ExpandedSearchInfo { try { await this.DoExtraction(objectId, info); } catch (Exception ex) { - PluginLog.LogError($"Error in extraction thread:\n{ex}"); + PluginLog.LogError(ex, "Error in extraction thread"); } }); }