Unify warning to other schemes and use string interpolation

This commit is contained in:
Jacek Laskowski 2013-12-23 14:00:59 +01:00 committed by Mark Harrah
parent 553ea80149
commit a5b8dffc74
1 changed files with 1 additions and 1 deletions

View File

@ -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}")
}
}
}