2003/12/29 03:25:45
[org.ibex.core.git] / src / org / xwt / translators / SVG.java
index 8c22dd0..958d7a5 100644 (file)
@@ -16,7 +16,7 @@ public class SVG {
         props.put("fill", h.get("fill"));
         props.put("stroke", h.get("stroke"));
         if ("visible".equals(h.get("overflow")) || "auto".equals(h.get("overflow")))
-            Log.log(VectorGraphics.class, "warning: overflow={auto|visible} not supported; ignoring");
+            Log.info(VectorGraphics.class, "warning: overflow={auto|visible} not supported; ignoring");
         if (h.get("display") != null) props.put("invisible", new Boolean("none".equals(h.get("display"))));
 
 
@@ -147,7 +147,7 @@ public class SVG {
             path = s + (name.equals("polygon") ? "z" : "");
 
         } else {
-            Log.log(VectorGraphics.class, "unknown element in VectorGraphics namespace: " + name);
+            Log.info(VectorGraphics.class, "unknown element in VectorGraphics namespace: " + name);
         }
         props.put("path", path);
         t.keys = new String[props.size()];