e_uuid_store: Print out some more store infos on startup

This commit is contained in:
Stefan Schmidt 2014-04-10 13:53:32 +02:00
parent 8ebda14276
commit 720f3634f8
1 changed files with 6 additions and 0 deletions

View File

@ -66,6 +66,12 @@ e_uuid_store_init(void)
}
INF("mmaped blob with size %i created", TABLE_SIZE);
if (store->table->version)
INF("UUID table with version %i", store->table->version);
INF("UUID table with %i entries", store->table->entry_count);
return 1;
}