summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGUI
diff options
context:
space:
mode:
authorthankyouverycool <66646555+thankyouverycool@users.noreply.github.com>2022-08-12 19:33:05 -0400
committerAndreas Kling <kling@serenityos.org>2022-08-16 16:43:27 +0200
commitdb058a22aeeadc22539e3e1efd9216970eebdd19 (patch)
tree024c916a83a1dcc9f4ab831388fcb3b5d5ff8650 /Userland/Libraries/LibGUI
parent7c1995993f48982b79b06dca5f36a0f18e687362 (diff)
downloadserenity-db058a22aeeadc22539e3e1efd9216970eebdd19.zip
LibGUI: Put DragOperation dbgln() behind DRAG_DEBUG
Diffstat (limited to 'Userland/Libraries/LibGUI')
-rw-r--r--Userland/Libraries/LibGUI/DragOperation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGUI/DragOperation.cpp b/Userland/Libraries/LibGUI/DragOperation.cpp
index 349c230246..941c76ccc4 100644
--- a/Userland/Libraries/LibGUI/DragOperation.cpp
+++ b/Userland/Libraries/LibGUI/DragOperation.cpp
@@ -48,7 +48,7 @@ DragOperation::Outcome DragOperation::exec()
m_event_loop = make<Core::EventLoop>();
auto result = m_event_loop->exec();
m_event_loop = nullptr;
- dbgln("{}: event loop returned with result {}", class_name(), result);
+ dbgln_if(DRAG_DEBUG, "{}: event loop returned with result {}", class_name(), result);
remove_from_parent();
s_current_drag_operation = nullptr;
return m_outcome;