Skip to content

Commit a6f08c8

Browse files
Apply suggestions from code review
1 parent db6ebfe commit a6f08c8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

templates/cli/lib/commands/push.js.twig

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ const pushProject = async () => {
271271
const projectId = localConfig.getProject().projectId;
272272
const projectName = localConfig.getProject().projectName;
273273

274-
log('Updating project name');
274+
log(`Updating project ${projectName} ( ${projectId} )`);
275275

276276
await projectsUpdate({
277277
projectId,
@@ -282,7 +282,7 @@ const pushProject = async () => {
282282
const settings = localConfig.getProject().projectSettings;
283283

284284
if (settings.services) {
285-
log('Updating services status');
285+
log('Updating service statuses');
286286
for (let [service, status] of Object.entries(settings.services)) {
287287
await projectsUpdateServiceStatus({
288288
projectId,
@@ -295,7 +295,7 @@ const pushProject = async () => {
295295

296296
if (settings.auth) {
297297
if (settings.auth.security) {
298-
log('Updating Auth security settings');
298+
log('Updating auth security settings');
299299
await projectsUpdateAuthDuration({ projectId, duration: settings.auth.security.duration, parseOutput: false });
300300
await projectsUpdateAuthLimit({ projectId, limit: settings.auth.security.limit, parseOutput: false });
301301
await projectsUpdateAuthSessionsLimit({ projectId, limit: settings.auth.security.sessionsLimit, parseOutput: false });
@@ -305,7 +305,7 @@ const pushProject = async () => {
305305
}
306306

307307
if (settings.auth.methods) {
308-
log('Updating Auth available login methods');
308+
log('Updating auth login methods');
309309

310310
for (let [method, status] of Object.entries(settings.auth.methods)) {
311311
await projectsUpdateAuthStatus({

0 commit comments

Comments
 (0)