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 6a39ecd3b35f1fc8ea788e680bed675f481c0235..91850ea93b6edd63f90aa6c0f7d81089a4088880 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);