From 45e7c2ba69e940db9e74f6a8f5d3b7e4e264fb47 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 12 Jan 2020 09:57:46 +0100 Subject: [PATCH] LibDraw: Remove debug spam about loading system themes --- Libraries/LibDraw/SystemTheme.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/Libraries/LibDraw/SystemTheme.cpp b/Libraries/LibDraw/SystemTheme.cpp index 24cdf356df..f6a0ba508b 100644 --- a/Libraries/LibDraw/SystemTheme.cpp +++ b/Libraries/LibDraw/SystemTheme.cpp @@ -28,8 +28,6 @@ RefPtr load_system_theme(const String& path) auto file = CConfigFile::open(path); auto buffer = SharedBuffer::create_with_size(sizeof(SystemTheme)); - dbg() << "Created shared buffer with id " << buffer->shared_buffer_id(); - auto* data = (SystemTheme*)buffer->data(); auto get_color = [&](auto& name) { @@ -37,7 +35,6 @@ RefPtr load_system_theme(const String& path) auto color = Color::from_string(color_string); if (!color.has_value()) return Color(Color::Black); - dbg() << "Parsed system theme color '" << name << "' = " << color.value(); return color.value(); };