summaryrefslogtreecommitdiff
path: root/Userland/test-crypto.cpp
diff options
context:
space:
mode:
authorAnotherTest <ali.mpfard@gmail.com>2020-11-11 13:12:06 +0330
committerAndreas Kling <kling@serenityos.org>2020-11-14 10:18:54 +0100
commit2cc867bcbafb49aaa236521bf4b81d59500becca (patch)
treee6165e08db428cad9f1b1474034b0b239ed2a037 /Userland/test-crypto.cpp
parent740089d24a28e423584efd46280d0ae6ca1d8edd (diff)
downloadserenity-2cc867bcbafb49aaa236521bf4b81d59500becca.zip
test-crypto: Silence the "creating bytebuffer..." debug
Diffstat (limited to 'Userland/test-crypto.cpp')
-rw-r--r--Userland/test-crypto.cpp1
1 files changed, 0 insertions, 1 deletions
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);
}