| | |
| | | } |
| | | |
| | | if (!errorFilePaths.isEmpty()) { |
| | | getLog().warn(" Potential " + svnPropertyName + " updates needed " + "for the following files:"); |
| | | for (String filename : errorFilePaths) { |
| | | getLog().warn(" " + filename); |
| | | logWithAppropriateLevel(" Potential " + svnPropertyName + " updates needed " + "for the following files:"); |
| | | for (String fileName : errorFilePaths) { |
| | | logWithAppropriateLevel(" " + fileName); |
| | | } |
| | | |
| | | if (!ignoreErrors) { |
| | |
| | | } |
| | | } |
| | | |
| | | private void logWithAppropriateLevel(final String message) { |
| | | if (!ignoreErrors) { |
| | | getLog().error(message); |
| | | } else { |
| | | getLog().warn(message); |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * Examines the provided status item to determine whether the associated |
| | | * file is acceptable. |