Skip to content

Commit 252a540

Browse files
authored
quote path in log statement (#4669)
1 parent 2c08f40 commit 252a540

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
*/
1919

2020
/*
21-
* Copyright (c) 2007, 2023, Oracle and/or its affiliates. All rights reserved.
21+
* Copyright (c) 2007, 2024, Oracle and/or its affiliates. All rights reserved.
2222
* Portions Copyright (c) 2017, 2020, Chris Fraire <cfraire@me.com>.
2323
* Portions Copyright (c) 2020, Aleksandr Kirillov <alexkirillovsamara@gmail.com>.
2424
*/
@@ -1510,7 +1510,7 @@ public void encodeObject(OutputStream out) {
15101510
}
15111511

15121512
public static Configuration read(File file) throws IOException {
1513-
LOGGER.log(Level.INFO, "Reading configuration from {0}", file.getCanonicalPath());
1513+
LOGGER.log(Level.INFO, "Reading configuration from ''{0}''", file.getCanonicalPath());
15141514
try (FileInputStream in = new FileInputStream(file)) {
15151515
return decodeObject(in);
15161516
}

0 commit comments

Comments
 (0)