| | |
| | | final String[] commandLineArgs = |
| | | args.toArray(new String[args.size()]); |
| | | // Displays info about command line args for log only. |
| | | logger.debug(INFO_UPGRADE_REBUILD_INDEX_ARGUMENTS.get( |
| | | Arrays.toString(commandLineArgs))); |
| | | logger.debug(INFO_UPGRADE_REBUILD_INDEX_ARGUMENTS, Arrays.toString(commandLineArgs)); |
| | | |
| | | /* |
| | | * The rebuild-index process just display a status ok / fails. The |
| | |
| | | { |
| | | final LocalizableMessage msg = INFO_UPGRADE_REBUILD_INDEX_NO_BACKEND_FOUND.get(); |
| | | logger.debug(msg); |
| | | logger.debug(INFO_UPGRADE_REBUILD_INDEX_DECLINED.get( |
| | | Arrays.toString(indexesListToRebuild.toArray()))); |
| | | logger.debug(INFO_UPGRADE_REBUILD_INDEX_DECLINED, indexesListToRebuild); |
| | | context.notifyProgress(pnc.setProgress(100)); |
| | | } |
| | | } |
| | |
| | | { |
| | | if (changeCount != 0) |
| | | { |
| | | logger.debug(INFO_UPGRADE_CHANGE_DONE_IN_SPECIFIC_FILE.get(fileName, changeCount)); |
| | | logger.debug(INFO_UPGRADE_CHANGE_DONE_IN_SPECIFIC_FILE, fileName, changeCount); |
| | | } |
| | | else |
| | | { |
| | | logger.debug(INFO_UPGRADE_NO_CHANGE_DONE_IN_SPECIFIC_FILE.get(fileName)); |
| | | logger.debug(INFO_UPGRADE_NO_CHANGE_DONE_IN_SPECIFIC_FILE, fileName); |
| | | } |
| | | } |
| | | |