Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-09-07 12:11:43 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-09-07 12:11:43 +0300
commit378308b6cde44eb1a320b9202ff8946a911f35f6 (patch)
tree3031a645455dbbcdb2961dd09c15100fa28ed8e1 /app/assets/javascripts/deploy_freeze
parent777dc3053f8433a9f5c9cc868325e16eac5d93e5 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/deploy_freeze')
-rw-r--r--app/assets/javascripts/deploy_freeze/store/actions.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/deploy_freeze/store/actions.js b/app/assets/javascripts/deploy_freeze/store/actions.js
index a2056165cb2..1ac6781a0e3 100644
--- a/app/assets/javascripts/deploy_freeze/store/actions.js
+++ b/app/assets/javascripts/deploy_freeze/store/actions.js
@@ -1,5 +1,6 @@
import Api from '~/api';
import createFlash from '~/flash';
+import { logError } from '~/lib/logger';
import { __ } from '~/locale';
import * as types from './mutation_types';
@@ -63,8 +64,7 @@ export const deleteFreezePeriod = ({ state, commit }, { id }) => {
});
commit(types.RECEIVE_DELETE_FREEZE_PERIOD_ERROR, id);
- // eslint-disable-next-line no-console
- console.error('[gitlab] Unable to delete deploy freeze:', e);
+ logError(`Unable to delete deploy freeze`, e);
});
};