File tree Expand file tree Collapse file tree
src/ubic/basecode/ontology/jena Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -253,7 +253,7 @@ public static URLConnection openConnection( String url ) throws IOException {
253253 if ( StringUtils .isBlank ( newUrl ) ) {
254254 throw new RuntimeException ( String .format ( "Redirect response for %s is lacking a 'Location' header." , url ) );
255255 }
256- log .info ( "Redirect to " + newUrl + " from " + url );
256+ log .debug ( "Redirect to " + newUrl + " from " + url );
257257 urlc = openConnectionInternal ( newUrl );
258258 }
259259 }
@@ -268,7 +268,7 @@ private static URLConnection openConnectionInternal( String url ) throws IOExcep
268268 if ( urlc instanceof HttpURLConnection ) {
269269 ( ( HttpURLConnection ) urlc ).setInstanceFollowRedirects ( true );
270270 }
271- log .info ( "Connecting to " + url );
271+ log .debug ( "Connecting to " + url );
272272 urlc .connect (); // Will error here on bad URL
273273 return urlc ;
274274 }
You can’t perform that action at this time.
0 commit comments