test-crypto: Silence the "creating bytebuffer..." debug

This commit is contained in:
AnotherTest 2020-11-11 13:12:06 +03:30 committed by Andreas Kling
parent 740089d24a
commit 2cc867bcba
Notes: sideshowbarker 2024-07-19 02:28:49 +09:00

View file

@ -534,7 +534,6 @@ auto main(int argc, char** argv) -> int
static ByteBuffer operator""_b(const char* string, size_t length)
{
dbg() << "Create byte buffer of size " << length;
return ByteBuffer::copy(string, length);
}