|
18 | 18 | */
|
19 | 19 |
|
20 | 20 | /*
|
21 |
| - * Copyright (c) 2006, 2020, Oracle and/or its affiliates. All rights reserved. |
| 21 | + * Copyright (c) 2006, 2023, Oracle and/or its affiliates. All rights reserved. |
22 | 22 | * Portions Copyright (c) 2017, 2020, Chris Fraire <[email protected]>.
|
23 | 23 | * Portions Copyright (c) 2020, 2023, Ric Harris <[email protected]>.
|
24 | 24 | */
|
@@ -112,7 +112,7 @@ public void startElement(String uri, String localName, String qname, Attributes
|
112 | 112 | entry.setRevision(attr.getValue("revision"));
|
113 | 113 | } else if ("path".equals(qname)) {
|
114 | 114 | if (attr.getIndex(COPYFROM_PATH) != -1) {
|
115 |
| - LOGGER.info("rename for:" + attr.getValue(COPYFROM_PATH) ); |
| 115 | + LOGGER.log(Level.FINER, "rename for {0}", attr.getValue(COPYFROM_PATH)); |
116 | 116 | if ("dir".equals(attr.getValue("kind"))) {
|
117 | 117 | isRenamedDir = true;
|
118 | 118 | } else {
|
@@ -158,7 +158,8 @@ public void endElement(String uri, String localName, String qname) throws SAXExc
|
158 | 158 | renamedToDirectoryRevisions.put(path.intern(), entry.getRevision());
|
159 | 159 | }
|
160 | 160 | } else {
|
161 |
| - LOGGER.log(Level.FINER, "Skipping file outside repository: " + s); |
| 161 | + LOGGER.log(Level.FINER, "Skipping file ''{0}'' outside repository ''{1}''", |
| 162 | + new Object[]{s, this.home}); |
162 | 163 | }
|
163 | 164 | } else if ("msg".equals(qname)) {
|
164 | 165 | entry.setMessage(s);
|
|
0 commit comments