From ed5edd925ce5d9dd6dbaf37e9bfbeb0a0cb813f3 Mon Sep 17 00:00:00 2001
From: Lukas Werner <lks.werner@fau.de>
Date: Sat, 27 Jan 2018 10:48:15 +0100
Subject: [PATCH] Removed unnecessary logging

---
 src/pe/raytracing/Intersects.h | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/pe/raytracing/Intersects.h b/src/pe/raytracing/Intersects.h
index d8ffff061..0bba3fbd7 100644
--- a/src/pe/raytracing/Intersects.h
+++ b/src/pe/raytracing/Intersects.h
@@ -189,10 +189,8 @@ inline bool intersects(const BoxID box, const Ray& ray, real_t& t, Vec3& n) {
    
    if (transformedRay.getDirection() * n > 0) {
       n = -n;
-   }
-   
+   }   
    n = box->vectorFromBFtoWF(n);
-   WALBERLA_LOG_INFO("t_: " << t_ << ", n: " << n);
    
    t = t_;
    return true;
-- 
GitLab