File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -302,7 +302,7 @@ void java_bytecode_convert_classt::convert(
302
302
}
303
303
catch (const unsupported_java_class_signature_exceptiont &e)
304
304
{
305
- warning () << " Class: " << c.name
305
+ debug () << " Class: " << c.name
306
306
<< " \n could not parse signature: " << c.signature .value ()
307
307
<< " \n " << e.what () << " \n ignoring that the class is generic"
308
308
<< eom;
@@ -364,7 +364,7 @@ void java_bytecode_convert_classt::convert(
364
364
}
365
365
catch (const unsupported_java_class_signature_exceptiont &e)
366
366
{
367
- warning () << " Superclass: " << c.super_class << " of class: " << c.name
367
+ debug () << " Superclass: " << c.super_class << " of class: " << c.name
368
368
<< " \n could not parse signature: " << superclass_ref.value ()
369
369
<< " \n " << e.what ()
370
370
<< " \n ignoring that the superclass is generic" << eom;
@@ -404,7 +404,7 @@ void java_bytecode_convert_classt::convert(
404
404
}
405
405
catch (const unsupported_java_class_signature_exceptiont &e)
406
406
{
407
- warning () << " Interface: " << interface << " of class: " << c.name
407
+ debug () << " Interface: " << interface << " of class: " << c.name
408
408
<< " \n could not parse signature: " << interface_ref.value ()
409
409
<< " \n " << e.what ()
410
410
<< " \n ignoring that the interface is generic" << eom;
Original file line number Diff line number Diff line change @@ -275,7 +275,7 @@ java_method_typet member_type_lazy(
275
275
}
276
276
else
277
277
{
278
- message.warning () << " Method: " << class_name << " ." << method_name
278
+ message.debug () << " Method: " << class_name << " ." << method_name
279
279
<< " \n signature: " << signature.value ()
280
280
<< " \n descriptor: " << descriptor
281
281
<< " \n different number of parameters, reverting to "
@@ -285,7 +285,7 @@ java_method_typet member_type_lazy(
285
285
}
286
286
catch (const unsupported_java_class_signature_exceptiont &e)
287
287
{
288
- message.warning () << " Method: " << class_name << " ." << method_name
288
+ message.debug () << " Method: " << class_name << " ." << method_name
289
289
<< " \n could not parse signature: " << signature.value ()
290
290
<< " \n " << e.what () << " \n "
291
291
<< " reverting to descriptor: " << descriptor
Original file line number Diff line number Diff line change @@ -164,7 +164,7 @@ java_class_loadert::get_parse_tree(
164
164
++parse_tree_it;
165
165
break ;
166
166
}
167
- warning ()
167
+ debug ()
168
168
<< " Skipping class " << class_name
169
169
<< " marked with OverlayClassImplementation but found before"
170
170
" original definition"
@@ -180,7 +180,7 @@ java_class_loadert::get_parse_tree(
180
180
// Remove non-initial classes that aren't overlays
181
181
if (!is_overlay_class (parse_tree_it->parsed_class ))
182
182
{
183
- warning ()
183
+ debug ()
184
184
<< " Skipping duplicate definition of class " << class_name
185
185
<< " not marked with OverlayClassImplementation" << eom;
186
186
auto duplicate_non_overlay_it = parse_tree_it;
@@ -194,7 +194,7 @@ java_class_loadert::get_parse_tree(
194
194
return parse_trees;
195
195
196
196
// Not found or failed to load
197
- warning () << " failed to load class " << class_name << eom;
197
+ debug () << " failed to load class " << class_name << eom;
198
198
parse_trees.emplace_back (class_name);
199
199
return parse_trees;
200
200
}
You can’t perform that action at this time.
0 commit comments