From c5450647423c8e13313ec24f3fd76a293f5aae4d Mon Sep 17 00:00:00 2001
From: gmantele <gmantele@ari.uni-heidelberg.de>
Date: Wed, 22 Apr 2015 14:50:50 +0200
Subject: [PATCH] [ALL] Remove debugging messages

---
 test/testtools/DBTools.java | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/test/testtools/DBTools.java b/test/testtools/DBTools.java
index 5c837ba..ba542f9 100644
--- a/test/testtools/DBTools.java
+++ b/test/testtools/DBTools.java
@@ -90,9 +90,6 @@ public final class DBTools {
 			throw new DBToolsException("Impossible to load the JDBC driver: " + e.getMessage(), e);
 		}
 
-		// TODO DEBUG MSG
-		System.out.println("[DEBUG] " + dbms + " JDBC Driver Registered!");
-
 		// 3. Establish the connection:
 		Connection connection = null;
 		try{
@@ -104,9 +101,6 @@ public final class DBTools {
 		if (connection == null)
 			throw new DBToolsException("Failed to make connection!");
 
-		// TODO DEBUG MSG
-		System.out.println("[DEBUG] Connection to " + dbName + " established!");
-
 		return connection;
 	}
 
@@ -119,9 +113,6 @@ public final class DBTools {
 				}catch(InterruptedException e){
 					System.err.println("WARNING: can't wait/sleep before testing the connection close status! [" + e.getMessage() + "]");
 				}
-				// TODO DEBUG MSG
-				if (conn.isClosed())
-					System.out.println("[DEBUG] Connection closed!");
 				return conn.isClosed();
 			}else
 				return true;
-- 
GitLab