mirror of
https://github.com/matrix-construct/construct
synced 2024-12-26 15:33:54 +01:00
ircd::ios: Increase descriptor name width in debuglog.
This commit is contained in:
parent
ce7ede99cf
commit
af102fcab6
2 changed files with 8 additions and 8 deletions
|
@ -319,9 +319,9 @@ noexcept
|
|||
log::logf
|
||||
{
|
||||
log, log::level::DEBUG,
|
||||
"QUEUE %5u %-20s [%11lu] ------[%9lu] q:%-4lu",
|
||||
"QUEUE %5u %-30s [%11lu] ------[%9lu] q:%-4lu",
|
||||
descriptor.id,
|
||||
trunc(descriptor.name, 20),
|
||||
trunc(descriptor.name, 30),
|
||||
stats.calls,
|
||||
0UL,
|
||||
stats.queued,
|
||||
|
|
12
ircd/ios.cc
12
ircd/ios.cc
|
@ -195,9 +195,9 @@ noexcept
|
|||
log::logf
|
||||
{
|
||||
log, log::level::DEBUG,
|
||||
"FAULT %5u %-20s [%11lu] faults[%9lu] q:%-4lu",
|
||||
"FAULT %5u %-30s [%11lu] faults[%9lu] q:%-4lu",
|
||||
descriptor.id,
|
||||
trunc(descriptor.name, 20),
|
||||
trunc(descriptor.name, 30),
|
||||
stats.calls,
|
||||
stats.faults,
|
||||
stats.queued,
|
||||
|
@ -245,9 +245,9 @@ noexcept
|
|||
log::logf
|
||||
{
|
||||
log, log::level::DEBUG,
|
||||
"LEAVE %5u %-20s [%11lu] cycles[%9lu] q:%-4lu",
|
||||
"LEAVE %5u %-30s [%11lu] cycles[%9lu] q:%-4lu",
|
||||
descriptor.id,
|
||||
trunc(descriptor.name, 20),
|
||||
trunc(descriptor.name, 30),
|
||||
stats.calls,
|
||||
stats.slice_last,
|
||||
stats.queued,
|
||||
|
@ -285,9 +285,9 @@ noexcept
|
|||
log::logf
|
||||
{
|
||||
log, log::level::DEBUG,
|
||||
"ENTER %5u %-20s [%11lu] latent[%9lu] q:%-4lu",
|
||||
"ENTER %5u %-30s [%11lu] latent[%9lu] q:%-4lu",
|
||||
descriptor.id,
|
||||
trunc(descriptor.name, 20),
|
||||
trunc(descriptor.name, 30),
|
||||
stats.calls,
|
||||
stats.latency_last,
|
||||
stats.queued,
|
||||
|
|
Loading…
Reference in a new issue