From 919511fe0e77759eba15c83ced173f012aadff32 Mon Sep 17 00:00:00 2001
From: Sebastian Hahta <joseha@utu.fi>
Date: Wed, 29 Jul 2020 09:43:23 +0300
Subject: [PATCH] remove debug messages

---
 applications/gui2/src/widgets/imageview.cpp | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/applications/gui2/src/widgets/imageview.cpp b/applications/gui2/src/widgets/imageview.cpp
index 46be78929..178ce2f3e 100644
--- a/applications/gui2/src/widgets/imageview.cpp
+++ b/applications/gui2/src/widgets/imageview.cpp
@@ -568,12 +568,6 @@ bool StereoImageView::scrollEvent(const nanogui::Vector2i& p, const nanogui::Vec
 		((p.x() >= posr.x()) && (orientation_ == nanogui::Orientation::Horizontal)) ||
 		((p.y() >= posr.y()) && (orientation_ == nanogui::Orientation::Vertical));
 
-	LOG(INFO) << "zoom_right: " << zoom_right;
-	LOG(INFO) << "pos: " << pos.x() << ", " << pos.y();
-	LOG(INFO) << "posl: " << posl.x() << ", " << posl.y();
-	LOG(INFO) << "posr: " << posr.x() << ", " << posr.y();
-	LOG(INFO) << "p: " << p.x() << ", " << p.y();
-
 	if (orientation_ == nanogui::Orientation::Horizontal) {
 		if (zoom_right) {
 			left_->zoom(v, pf - nanogui::Vector2f{float(left_->width()), 0.0f} - posl);
-- 
GitLab