Skip to content

Commit

Permalink
feat(cli): Reenable CLI version check (#2441)
Browse files Browse the repository at this point in the history
Had been disabled in
#1894
  • Loading branch information
spalladino authored Sep 21, 2023
1 parent e078ff4 commit c6ddd23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yarn-project/cli/src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export async function createCompatibleClient(rpcUrl: string, logger: DebugLogger
await checkServerVersion(client, expectedVersionRange);
} catch (err) {
if (err instanceof VersionMismatchError) {
logger.debug(err.message);
logger.warn(err.message);
} else {
throw err;
}
Expand Down

0 comments on commit c6ddd23

Please sign in to comment.