Skip to content

Commit

Permalink
Update log trace level and fix command in generateclasses.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
masesdevelopers committed Sep 27, 2024
1 parent 7e15703 commit 1e57047
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/generateclasses.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
shell: cmd
run: |
cd binReflector\net8.0
MASES.JNetReflector.exe -TraceTo %GITHUB_WORKSPACE%\JNetReflector.txt -DestinationRootPath %GITHUB_WORKSPACE%\src\ -ConfigurationFile %GITHUB_WORKSPACE%\src\configuration.json
MASES.JNetReflector.exe -TraceLevel 1 -TraceTo %GITHUB_WORKSPACE%\JNetReflector.txt -DestinationRootPath %GITHUB_WORKSPACE%\src\ -ConfigurationFile %GITHUB_WORKSPACE%\src\configuration.json
env:
JCOBRIDGE_LicensePath: ${{ secrets.JCOBRIDGE_ONLINE }}

Expand Down
2 changes: 1 addition & 1 deletion src/net/JNetReflector/InternalExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ public static string SignatureFromGenericString(this Method entry)
string signature = SignatureFromGenericString(filteredGenString, entry.DeclaringClass);
if (signature == null)
{
ReflectionUtils.ReportTrace(ReflectionUtils.ReflectionTraceLevel.Critical, $"SignatureFromGenericString: signature not found for method {entry.Name} (Generic string: {entry.GenericString}) of class {entry.DeclaringClass.TypeName} using {filteredGenString} not found.");
ReflectionUtils.ReportTrace(ReflectionUtils.ReflectionTraceLevel.Error, $"SignatureFromGenericString: signature not found for method {entry.Name} (Generic string: {entry.GenericString}) of class {entry.DeclaringClass.TypeName} using {filteredGenString} not found.");
}
return signature;
}
Expand Down

0 comments on commit 1e57047

Please sign in to comment.