From bb120907f2aeb32a55ed6d599127482998131c4a Mon Sep 17 00:00:00 2001 From: Vladimir Kotal Date: Tue, 8 Oct 2024 09:43:15 +0200 Subject: [PATCH 1/2] quote path in log statement --- .../java/org/opengrok/indexer/configuration/Configuration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opengrok-indexer/src/main/java/org/opengrok/indexer/configuration/Configuration.java b/opengrok-indexer/src/main/java/org/opengrok/indexer/configuration/Configuration.java index d9fed1c0ace..e579de04cde 100644 --- a/opengrok-indexer/src/main/java/org/opengrok/indexer/configuration/Configuration.java +++ b/opengrok-indexer/src/main/java/org/opengrok/indexer/configuration/Configuration.java @@ -1510,7 +1510,7 @@ public void encodeObject(OutputStream out) { } public static Configuration read(File file) throws IOException { - LOGGER.log(Level.INFO, "Reading configuration from {0}", file.getCanonicalPath()); + LOGGER.log(Level.INFO, "Reading configuration from ''{0}''", file.getCanonicalPath()); try (FileInputStream in = new FileInputStream(file)) { return decodeObject(in); } From 6fe405085f982e8b11d93d50a8101dae9ce58fa2 Mon Sep 17 00:00:00 2001 From: Vladimir Kotal Date: Tue, 8 Oct 2024 09:48:25 +0200 Subject: [PATCH 2/2] bump year --- .../java/org/opengrok/indexer/configuration/Configuration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opengrok-indexer/src/main/java/org/opengrok/indexer/configuration/Configuration.java b/opengrok-indexer/src/main/java/org/opengrok/indexer/configuration/Configuration.java index e579de04cde..11ecca956f5 100644 --- a/opengrok-indexer/src/main/java/org/opengrok/indexer/configuration/Configuration.java +++ b/opengrok-indexer/src/main/java/org/opengrok/indexer/configuration/Configuration.java @@ -18,7 +18,7 @@ */ /* - * Copyright (c) 2007, 2023, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2024, Oracle and/or its affiliates. All rights reserved. * Portions Copyright (c) 2017, 2020, Chris Fraire . * Portions Copyright (c) 2020, Aleksandr Kirillov . */