File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
src/java/org/apache/hadoop Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -269,6 +269,9 @@ Trunk (unreleased changes)
269269 HADOOP-7314. Add support for throwing UnknownHostException when a host doesn't
270270 resolve. (Jeffrey Naisbitt via jitendra)
271271
272+ HADOOP-7465. A several tiny improvements for the LOG format.
273+ (Xie Xianshan via eli)
274+
272275 OPTIMIZATIONS
273276
274277 HADOOP-7333. Performance improvement in PureJavaCrc32. (Eric Caspole
Original file line number Diff line number Diff line change @@ -232,7 +232,7 @@ private void confChanged(Configuration conf) throws IOException {
232232 dirs .add (localDirs [i ]);
233233 dfList .add (new DF (new File (localDirs [i ]), 30000 ));
234234 } catch (DiskErrorException de ) {
235- LOG .warn ( localDirs [i ] + "is not writable\n " , de );
235+ LOG .warn ( localDirs [i ] + " is not writable\n " , de );
236236 }
237237 } else {
238238 LOG .warn ( "Failed to create " + localDirs [i ]);
Original file line number Diff line number Diff line change @@ -245,7 +245,7 @@ public Connection(ConnectionId remoteId) throws IOException {
245245 this .doPing = remoteId .getDoPing ();
246246 this .pingInterval = remoteId .getPingInterval ();
247247 if (LOG .isDebugEnabled ()) {
248- LOG .debug ("The ping interval is" + this .pingInterval + "ms." );
248+ LOG .debug ("The ping interval is " + this .pingInterval + " ms." );
249249 }
250250
251251 UserGroupInformation ticket = remoteId .getTicket ();
You can’t perform that action at this time.
0 commit comments