File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
opengrok-indexer/src/main/java/org/opengrok/indexer/configuration Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1818 */
1919
2020/*
21- * Copyright (c) 2008, 2019 , Oracle and/or its affiliates. All rights reserved.
21+ * Copyright (c) 2008, 2024 , Oracle and/or its affiliates. All rights reserved.
2222 * Portions Copyright (c) 2017, 2020, Chris Fraire <cfraire@me.com>.
2323 */
2424package org .opengrok .indexer .configuration ;
@@ -59,12 +59,12 @@ public boolean accept(File file) {
5959 if (!includedNames .isEmpty ()
6060 && // the filter should not affect directory names
6161 (!(file .isDirectory () || includedNames .match (file )))) {
62- LOGGER .log (Level .FINER , "not including {0}" , file .getAbsolutePath ());
62+ LOGGER .log (Level .FINER , "not including '' {0}'' " , file .getAbsolutePath ());
6363 return false ;
6464 }
6565
6666 if (ignoredNames .ignore (file )) {
67- LOGGER .log (Level .FINER , "ignoring {0}" , file .getAbsolutePath ());
67+ LOGGER .log (Level .FINER , "ignoring '' {0}'' " , file .getAbsolutePath ());
6868 return false ;
6969 }
7070
You can’t perform that action at this time.
0 commit comments