Revision 76 org.gvsig.jcrs/trunk/libJCRS/src/org/gvsig/crs/repository/EpsgRepository.java

View differences:

EpsgRepository.java
112 112
			crs_kind = result.getString("coord_ref_sys_kind");
113 113
			datum_code = result.getInt("datum_code");
114 114
		} catch (SQLException e1) {
115
		    LOG.error("Error executing the SQL", e1);
115
		    LOG.info("Error executing the SQL", e1);
116
		    return null;
116 117
		}
117 118
		
118 119
		if (datum_code != 0){
......
141 142
		try {
142 143
			crs = new Crs(Integer.parseInt(code),wkt.getWKT());
143 144
		} catch (CrsException e) {
144
		    LOG.error("Impossible to parse the CRS", e);
145
		    LOG.info("Impossible to parse the CRS", e);
146
		    return null;
145 147
		}
146 148
		return crs;
147 149
	}

Also available in: Unified diff