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:
Ashod Nakashian 2021-03-08 18:16:39 -05:00 committed by Ashod Nakashian
parent 05ec2a68d6
commit 8178a7be9f

View file

@ -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 &&