0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-10 22:18:54 +02:00

ircd::db::database::events: Log level WARNING for aborting table file create.

This commit is contained in:
Jason Volk 2022-06-13 20:39:05 -07:00
parent 705374720b
commit 8338eb0ae2

View file

@ -2767,6 +2767,8 @@ noexcept
{
info.status == rocksdb::Status::OK()?
log::level::DEBUG:
info.status == rocksdb::Status::Aborted()?
log::level::WARNING:
log::level::ERROR
};