Log only exception message on feed lookup failures

Seeing same exceptions over and over again is not very useful, mainly
when their stacktraces are not useful too.

Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
This commit is contained in:
Tomas Slusny
2019-02-16 04:43:03 +01:00
parent a0cdd64719
commit 60e17c2ac1

View File

@@ -71,7 +71,7 @@ public class FeedController
}
catch (IOException e)
{
log.warn(null, e);
log.warn(e.getMessage());
}
try
@@ -80,7 +80,7 @@ public class FeedController
}
catch (IOException e)
{
log.warn(null, e);
log.warn(e.getMessage());
}
try
@@ -89,7 +89,7 @@ public class FeedController
}
catch (IOException e)
{
log.warn(null, e);
log.warn(e.getMessage());
}
feedResult = new FeedResult(items);