From 175eff30c98c9a243dcef8a4d272a9d66edb3162 Mon Sep 17 00:00:00 2001 From: Cynthia Lang <39891200+cynsupercat@users.noreply.github.com> Date: Wed, 13 Dec 2023 12:21:37 +1100 Subject: [PATCH] Add deprecation warn log (#40) * Add deprecation warn log * Date wording --- src/onboarding/2-create-project.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/onboarding/2-create-project.ts b/src/onboarding/2-create-project.ts index 7340c77..82544fd 100644 --- a/src/onboarding/2-create-project.ts +++ b/src/onboarding/2-create-project.ts @@ -12,6 +12,7 @@ const log: ImLogger = new WinstonLogger(loggerConfig); const component = '[IMX-CREATE-PROJECT]'; (async (): Promise => { + log.warn(component, 'Project registration via this repository will be deprecated on the 20th of January, 2024. In the future, please use https://hub.immutable.com to create new projects.') const privateKey = requireEnvironmentVariable('OWNER_ACCOUNT_PRIVATE_KEY'); const signer = new Wallet(privateKey).connect(provider);