From 2cc867bcbafb49aaa236521bf4b81d59500becca Mon Sep 17 00:00:00 2001 From: AnotherTest Date: Wed, 11 Nov 2020 13:12:06 +0330 Subject: [PATCH] test-crypto: Silence the "creating bytebuffer..." debug --- Userland/test-crypto.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Userland/test-crypto.cpp b/Userland/test-crypto.cpp index a473ee3e30..dd78cd3409 100644 --- a/Userland/test-crypto.cpp +++ b/Userland/test-crypto.cpp @@ -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); }