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 18
18
*/
19
19
20
20
/*
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.
22
22
* Portions Copyright (c) 2017, 2020, Chris Fraire <[email protected] >.
23
23
*/
24
24
package org .opengrok .indexer .configuration ;
@@ -59,12 +59,12 @@ public boolean accept(File file) {
59
59
if (!includedNames .isEmpty ()
60
60
&& // the filter should not affect directory names
61
61
(!(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 ());
63
63
return false ;
64
64
}
65
65
66
66
if (ignoredNames .ignore (file )) {
67
- LOGGER .log (Level .FINER , "ignoring {0}" , file .getAbsolutePath ());
67
+ LOGGER .log (Level .FINER , "ignoring '' {0}'' " , file .getAbsolutePath ());
68
68
return false ;
69
69
}
70
70
You can’t perform that action at this time.
0 commit comments