You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by hi...@apache.org on 2012/08/19 17:30:36 UTC

svn commit: r1374770 - /ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyClasspathContainerSerializer.java

Author: hibou
Date: Sun Aug 19 15:30:35 2012
New Revision: 1374770

URL: http://svn.apache.org/viewvc?rev=1374770&view=rev
Log:
IVYDE-317 : log as warning rather than error

Modified:
    ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyClasspathContainerSerializer.java

Modified: ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyClasspathContainerSerializer.java
URL: http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyClasspathContainerSerializer.java?rev=1374770&r1=1374769&r2=1374770&view=diff
==============================================================================
--- ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyClasspathContainerSerializer.java (original)
+++ ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyClasspathContainerSerializer.java Sun Aug 19 15:30:35 2012
@@ -112,7 +112,7 @@ public class IvyClasspathContainerSerial
                 }
             }
         } catch (IOException ioe) {
-            IvyPlugin.log(IStatus.ERROR, "IvyDE container states of the project "
+            IvyPlugin.log(IStatus.WARNING, "IvyDE container states of the project "
                     + project.getProject().getName() + " cound not be saved", ioe);
         }
     }
@@ -131,7 +131,7 @@ public class IvyClasspathContainerSerial
                 }
             }
         } catch (IOException ioe) {
-            IvyPlugin.log(IStatus.ERROR, "IvyDE container states of the project "
+            IvyPlugin.log(IStatus.WARNING, "IvyDE container states of the project "
                     + project.getProject().getName() + " cound not be read", ioe);
             return null;
         }