[utils] tracking keys added in trie construction from hash

This commit is contained in:
Al
2017-03-06 15:28:26 -05:00
parent dd4f3eb84c
commit 5113a1bc32

View File

@@ -40,6 +40,9 @@ trie_t *trie_new_from_hash(khash_t(str_uint32) *hash) {
trie_destroy(trie);
return NULL;
}
if (i % 100000 == 0 && i > 0) {
log_info("added %zu keys to trie\n");
}
}
string_array_destroy(hash_keys);