From 2f48b6f5e97a5d701e6659f09b312ffd12543e71 Mon Sep 17 00:00:00 2001 From: Ulysses Souza Date: Thu, 25 Feb 2021 11:18:31 -0300 Subject: [PATCH] Remove log.info for native build Signed-off-by: Ulysses Souza --- compose/project.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/compose/project.py b/compose/project.py index 0f112c9c1..e862464d8 100644 --- a/compose/project.py +++ b/compose/project.py @@ -490,8 +490,6 @@ class Project: log.info('%s uses an image, skipping' % service.name) if cli: - log.info("Building with native build. Learn about native build in Compose here: " - "https://docs.docker.com/go/compose-native-build/") if parallel_build: log.warning("Flag '--parallel' is ignored when building with " "COMPOSE_DOCKER_CLI_BUILD=1") @@ -651,10 +649,6 @@ class Project: override_options=None, ): - if cli: - log.info("Building with native build. Learn about native build in Compose here: " - "https://docs.docker.com/go/compose-native-build/") - self.initialize() if not ignore_orphans: self.find_orphan_containers(remove_orphans)