1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-05-20 20:05:18 +02:00

Demote the debug level to reduce verbosity

This commit is contained in:
Arun Sharma 2012-03-25 17:44:53 -07:00
parent 3d08506936
commit 43e5ee28c0

View file

@ -776,7 +776,7 @@ lookup (const struct table_entry *table, size_t table_size, int32_t rel_ip)
{
mid = (lo + hi) / 2;
e = table + mid;
Debug (1, "e->start_ip_offset = %lx\n", (long) e->start_ip_offset);
Debug (15, "e->start_ip_offset = %lx\n", (long) e->start_ip_offset);
if (rel_ip < e->start_ip_offset)
hi = mid;
else