Unify warning to other schemes and use string interpolation

This commit is contained in:
Jacek Laskowski
2014-01-02 09:18:54 -05:00
committed by Mark Harrah
parent 553ea80149
commit a5b8dffc74
@@ -34,7 +34,7 @@ object CheckProxy
catch
{
case e: MalformedURLException =>
System.out.println("Warning: could not parse http_proxy setting: " + e.toString)
System.out.println(s"Warning: could not parse $envURL setting: ${e.toString}")
}
}
}