From e9865611ad2db0fe7767c8edb9ab52c7967e581e Mon Sep 17 00:00:00 2001 From: irengrig Date: Mon, 26 Mar 2012 13:32:42 +0400 Subject: [PATCH] VCS: some more logging if exceptions --- .../com/intellij/openapi/vcs/history/FileHistoryPanelImpl.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/platform/vcs-impl/src/com/intellij/openapi/vcs/history/FileHistoryPanelImpl.java b/platform/vcs-impl/src/com/intellij/openapi/vcs/history/FileHistoryPanelImpl.java index 008a1ad75491..5b7f7eea5286 100644 --- a/platform/vcs-impl/src/com/intellij/openapi/vcs/history/FileHistoryPanelImpl.java +++ b/platform/vcs-impl/src/com/intellij/openapi/vcs/history/FileHistoryPanelImpl.java @@ -642,6 +642,7 @@ public class FileHistoryPanelImpl extends PanelWithActionsAndCloseButton { VcsHistoryUtil.showDiff(project, myFilePath, left, right, leftTitle, rightTitle); } catch (final VcsException e) { + LOG.info(e); WaitForProgressToShow.runOrInvokeLaterAboveProgress(new Runnable() { public void run() { Messages.showErrorDialog(VcsBundle.message("message.text.cannot.show.differences", e.getLocalizedMessage()), @@ -650,7 +651,7 @@ public class FileHistoryPanelImpl extends PanelWithActionsAndCloseButton { }, null, project); } catch (IOException e) { - LOG.error(e); + LOG.info(e); } catch (ProcessCanceledException ex) { LOG.info(ex);