1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 03:57:44 +00:00

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

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);
}