Compare commits

...

2 Commits

Author SHA1 Message Date
Anna 1a00d2ce19
chore: bump version to 1.3.12 2023-04-15 14:54:13 -04:00
Anna 6dc00765bb
chore: remove debug log 2023-04-15 14:53:59 -04:00
3 changed files with 2 additions and 3 deletions

View File

@ -2,7 +2,7 @@
<PropertyGroup> <PropertyGroup>
<TargetFramework>net7-windows</TargetFramework> <TargetFramework>net7-windows</TargetFramework>
<Version>1.3.11</Version> <Version>1.3.12</Version>
<LangVersion>latest</LangVersion> <LangVersion>latest</LangVersion>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> <AllowUnsafeBlocks>true</AllowUnsafeBlocks>

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");
} }
}); });
} }