@@ -920,20 +920,20 @@ private void createHistoryCache(Repository repository, String sinceRevision) {
920
920
if (repository .isWorking ()) {
921
921
Statistics elapsed = new Statistics ();
922
922
923
- LOGGER .log (Level .INFO , "Creating history cache for {0} ({1}) {2} renamed file handling" ,
923
+ LOGGER .log (Level .INFO , "Creating history cache for '' {0}'' ({1}) {2} renamed file handling" ,
924
924
new Object []{path , type , repository .isHandleRenamedFiles () ? "with" : "without" });
925
925
926
926
try {
927
927
repository .createCache (historyCache , sinceRevision );
928
928
} catch (Exception e ) {
929
929
LOGGER .log (Level .WARNING ,
930
- "An error occurred while creating cache for " + path + " (" + type + ")" , e );
930
+ String . format ( "An error occurred while creating cache for '%s' (%s)" , path , type ) , e );
931
931
}
932
932
933
- elapsed .report (LOGGER , "Done history cache for " + path );
933
+ elapsed .report (LOGGER , String . format ( "Done history cache for '%s'" , path ) );
934
934
} else {
935
935
LOGGER .log (Level .WARNING ,
936
- "Skipping creation of history cache of {0} repository in {1}: Missing SCM dependencies?" ,
936
+ "Skipping creation of history cache of {0} repository in '' {1}'' : Missing SCM dependencies?" ,
937
937
new Object []{type , path });
938
938
}
939
939
}
0 commit comments