We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ce89c7 commit 3f00d1bCopy full SHA for 3f00d1b
tools/jnimarshalmethod-gen/App.cs
@@ -172,7 +172,8 @@ void ProcessAssemblies (List<string> assemblies)
172
ad = AssemblyDefinition.ReadAssembly (assembly, readWriteParameters);
173
resolver.AddToCache (ad);
174
} catch (Exception) {
175
- Warning ($"Unable to read assembly '{assembly}' with symbols. Retrying to load it without them.");
+ if (Verbose)
176
+ Warning ($"Unable to read assembly '{assembly}' with symbols. Retrying to load it without them.");
177
ad = AssemblyDefinition.ReadAssembly (assembly, readWriteParametersNoSymbols);
178
179
}
0 commit comments