From 0c49e439c3a8ef4b98aa749f79284132f9080c59 Mon Sep 17 00:00:00 2001
From: David Hoksza <david.hoksza@uni.lu>
Date: Tue, 13 Feb 2018 20:48:41 +0100
Subject: [PATCH] Removed warning

---
 .../annotation/services/annotators/TairAnnotator.java         | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/annotation/src/main/java/lcsb/mapviewer/annotation/services/annotators/TairAnnotator.java b/annotation/src/main/java/lcsb/mapviewer/annotation/services/annotators/TairAnnotator.java
index 6a39ecd3b3..91850ea93b 100644
--- a/annotation/src/main/java/lcsb/mapviewer/annotation/services/annotators/TairAnnotator.java
+++ b/annotation/src/main/java/lcsb/mapviewer/annotation/services/annotators/TairAnnotator.java
@@ -173,11 +173,11 @@ public class TairAnnotator extends ElementAnnotator implements IExternalService
 			if (collection.size() > 0) {
 				return collection.iterator().next();
 			} else {
-				logger.warn("Cannot find tair data for id: " + tair.getResource());
+				logger.warn("Cannot find uniprot data for id: " + tair.getResource() + " in the tair page");
 				return null;
 			}
 		} catch (WrongResponseCodeIOException exception) {
-			logger.warn("Cannot find tair data for id: " + tair.getResource());
+			logger.warn("Wrong reponse code when accessing tair data with id: " + tair.getResource());
 			return null;
 		} catch (IOException exception) {
 			throw new AnnotatorException(exception);
-- 
GitLab