This commit is contained in:
Mohamed Karray
2018-09-14 16:36:02 +02:00
parent 188d2d8cef
commit 9a207d3313
15 changed files with 13 additions and 28 deletions

View File

@@ -28,7 +28,6 @@ import java.io.IOException;
* @since 2.0
*/
@Slf4j
@AllArgsConstructor
@RequiredArgsConstructor
@Accessors(fluent = true)
public final class ModificationsCommandBuilder {

View File

@@ -258,7 +258,7 @@ public final class RepositoryService implements Closeable {
* by the implementation of the repository service provider.
*/
public ModificationsCommandBuilder getModificationsCommand() {
logger.debug("create modifications command for repository {}", repository.getName());
logger.debug("create modifications command for repository {}",repository.getNamespaceAndName());
return new ModificationsCommandBuilder(provider.getModificationsCommand(),repository, cacheManager.getCache(ModificationsCommandBuilder.CACHE_NAME), preProcessorUtil);
}