Skip to content

Commit ba9e18d

Browse files
committed
quote logged paths
1 parent 636b3f3 commit ba9e18d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

opengrok-indexer/src/main/java/org/opengrok/indexer/configuration/PathAccepter.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
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 <[email protected]>.
2323
*/
2424
package 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

0 commit comments

Comments
 (0)