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>
<TargetFramework>net7-windows</TargetFramework>
<Version>1.3.11</Version>
<Version>1.3.12</Version>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>

View File

@ -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);

View File

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