Skip to content

Commit 848e222

Browse files
committed
refactor(cli): Changing error to info
1 parent f892673 commit 848e222

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const { projectsCreate } = require("./projects");
44
const { sdkForConsole } = require("../sdks");
55
const { localConfig, globalConfig } = require("../config");
66
const { questionsCreateProject } = require("../questions");
7-
const { success, error, actionRunner, commandDescriptions } = require("../parser");
7+
const { success, log, actionRunner, commandDescriptions } = require("../parser");
88
const { accountGet } = require("./account");
99
const { loginCommand } = require("./generic");
1010

@@ -19,7 +19,7 @@ const initProject = async () => {
1919
parseOutput: false
2020
});
2121
} catch (e) {
22-
error('You must login first')
22+
log('You must login first')
2323
await loginCommand()
2424
}
2525

0 commit comments

Comments
 (0)