wsd: test: log the length in decimal instead of hex
Change-Id: I4abaa903a529e2e6a99af5e0056883c084c1e9ea Signed-off-by: Ashod Nakashian <ashod.nakashian@collabora.co.uk>
This commit is contained in:
parent
05ec2a68d6
commit
8178a7be9f
1 changed files with 1 additions and 1 deletions
|
@ -178,7 +178,7 @@ public:
|
|||
break;
|
||||
}
|
||||
|
||||
result << ' ' << std::setw(3) << length << " bytes"
|
||||
result << ' ' << std::setw(3) << std::dec << length << " bytes"
|
||||
<< (flags & Poco::Net::WebSocket::FRAME_FLAG_FIN ? " (FIN)" : "");
|
||||
|
||||
if (length > 0 &&
|
||||
|
|
Loading…
Reference in a new issue