0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-27 19:28:52 +02:00

ircd: Minor log suppressions via comment.

This commit is contained in:
Jason Volk 2018-01-17 20:35:56 -08:00
parent 169f5aef84
commit 8f3483391e
2 changed files with 8 additions and 2 deletions

View file

@ -752,10 +752,12 @@ try
}
catch(const interrupted &e)
{
/*
log::debug("pool(%p) ctx(%p): %s",
this,
&cur(),
e.what());
*/
}
void

View file

@ -1618,11 +1618,13 @@ noexcept
rocksdb::Status
ircd::db::database::env::writable_file::Append(const Slice& s)
{
/*
log.debug("'%s': wfile:%p append:%p bytes:%zu",
d.name,
this,
data(s),
size(s));
*/
return defaults->Append(s);
}
@ -1655,20 +1657,22 @@ ircd::db::database::env::writable_file::Truncate(uint64_t size)
rocksdb::Status
ircd::db::database::env::writable_file::Close()
{
/*
log.debug("'%s': wfile:%p close",
d.name,
this);
*/
return defaults->Close();
}
rocksdb::Status
ircd::db::database::env::writable_file::Flush()
{
/*
log.debug("'%s': wfile:%p flush",
d.name,
this);
*/
return defaults->Flush();
}