chore: remove debug log

This commit is contained in:
Anna 2023-04-15 14:53:59 -04:00
parent 887163537d
commit d5def480a1
2 changed files with 1 additions and 2 deletions

View File

@ -33,7 +33,6 @@ namespace ExpandedSearchInfo {
try { try {
// Updated: 4.5 // Updated: 4.5
var actorId = *(uint*) (data + 48); var actorId = *(uint*) (data + 48);
PluginLog.Log($"actorId: {actorId:x8}");
var searchInfo = Util.ReadRawSeString(searchInfoPtr); var searchInfo = Util.ReadRawSeString(searchInfoPtr);

View File

@ -87,7 +87,7 @@ namespace ExpandedSearchInfo {
try { try {
await this.DoExtraction(objectId, info); await this.DoExtraction(objectId, info);
} catch (Exception ex) { } catch (Exception ex) {
PluginLog.LogError($"Error in extraction thread:\n{ex}"); PluginLog.LogError(ex, "Error in extraction thread");
} }
}); });
} }