0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-30 20:58:51 +02:00

ircd::db::env: Remove irrelevant information in debuglog.

This commit is contained in:
Jason Volk 2020-10-27 22:01:17 -07:00
parent 87b1b764c1
commit 975c54a1a3

View file

@ -42,14 +42,12 @@ noexcept try
#ifdef RB_DEBUG_DB_ENV
log::debug
{
log, "[%s] new sequential file '%s' options:%p [mm:%b direct:%b bufsz:%zu readahead:%zu]",
log, "[%s] new sequential file '%s' options:%p [mm:%b direct:%b]",
d.name,
name,
&options,
options.use_mmap_reads,
options.use_direct_reads,
options.random_access_max_buffer_size,
options.compaction_readahead_size,
};
#endif