diff options
author | AnotherTest <ali.mpfard@gmail.com> | 2020-11-11 13:12:06 +0330 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-11-14 10:18:54 +0100 |
commit | 2cc867bcbafb49aaa236521bf4b81d59500becca (patch) | |
tree | e6165e08db428cad9f1b1474034b0b239ed2a037 /Userland/test-crypto.cpp | |
parent | 740089d24a28e423584efd46280d0ae6ca1d8edd (diff) | |
download | serenity-2cc867bcbafb49aaa236521bf4b81d59500becca.zip |
test-crypto: Silence the "creating bytebuffer..." debug
Diffstat (limited to 'Userland/test-crypto.cpp')
-rw-r--r-- | Userland/test-crypto.cpp | 1 |
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); } |