0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-18 16:00:57 +01: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 #ifdef RB_DEBUG_DB_ENV
log::debug 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, d.name,
name, name,
&options, &options,
options.use_mmap_reads, options.use_mmap_reads,
options.use_direct_reads, options.use_direct_reads,
options.random_access_max_buffer_size,
options.compaction_readahead_size,
}; };
#endif #endif