Skip to content

Commit

Permalink
Bump plugin version
Browse files Browse the repository at this point in the history
  • Loading branch information
SapiensAnatis committed Mar 9, 2024
1 parent 917fa67 commit 4473a6d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<LangVersion>7.3</LangVersion>
<PlatformTarget>x64</PlatformTarget>
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
<AssemblyVersion>3.2.2</AssemblyVersion>
<AssemblyVersion>3.2.3</AssemblyVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,14 @@ private void HeroParamRequestCallback(IHttpResponse response, object userState)
JsonOptions
);

#if DEBUG
this.logger.DebugFormat("Response text: {0}", response.ResponseText);
this.logger.DebugFormat(
"Deserialized response: {0}",
JsonSerializer.Serialize(responseObject)
);
#endif

foreach (HeroParamData data in responseObject)
this.heroParamStorage[data.ActorNr] = new HeroParamState(data);
}
Expand Down

0 comments on commit 4473a6d

Please sign in to comment.