@@ -27,7 +27,7 @@ const service = new CdnResourcesService();
service.downloadAndWriteAll(downloader)
.then(() => {
- logger.info('Download is terminated successfully');
+ logger.info('Download is completed successfully');
})
.catch((err) => {
logger.error(err);
@@ -127,7 +127,7 @@ class ImportForm extends React.Component {
isImported: true,
});
- toastSuccess(undefined, 'Import process has terminated.');
+ toastSuccess(undefined, 'Import process has completed.');
// websocket event
@@ -254,7 +254,7 @@ class ImportService {
callback();
},
final(callback) {
- logger.info(`Importing ${collectionName} has terminated.`);
+ logger.info(`Importing ${collectionName} has completed.`);
@@ -449,7 +449,7 @@ class ElasticsearchDelegator {
- logger.info(`Adding pages has terminated: (totalCount=${totalCount}, skipped=${skipped})`);
+ logger.info(`Adding pages has completed: (totalCount=${totalCount}, skipped=${skipped})`);
if (isEmittingProgressEvent) {
searchEvent.emit('finishAddPage', totalCount, count, skipped);