Skip to content

Commit

Permalink
dumper: Reduce some noise to summary
Browse files Browse the repository at this point in the history
  • Loading branch information
dd86k committed Jun 23, 2024
1 parent b2be8e5 commit 810906a
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions dumper/dumper.d
Original file line number Diff line number Diff line change
Expand Up @@ -152,16 +152,13 @@ int dump_file(const(char)* path) {
}

// Otherwise, make a basic summary
printf("%s: %s (%s), %s",
path,
adbg_object_type_name(o), adbg_object_type_shortname(o),
adbg_object_kind_string(o));
printf("%s: %s, %s", path,
adbg_object_type_name(o), adbg_object_kind_string(o));

// Print instruction set used for object
// Print machine type used for object
AdbgMachine mach = adbg_object_machine(o);
if (mach)
printf(", for %s (%s) machines",
adbg_object_machine_string(o), adbg_machine_alias(mach));
printf(", %s", adbg_object_machine_string(o));

putchar('\n');
return 0;
Expand Down

0 comments on commit 810906a

Please sign in to comment.