Skip to content

Commit dac5fc1

Browse files
committed
change logging level
1 parent 86d6548 commit dac5fc1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dataikuapi/dss/flow.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def replace_input_computable(self, current_ref, new_ref, type="DATASET"):
3030
new_loc = AnyLoc.from_ref(self.project.project_key, new_ref)
3131

3232
if new_loc.project_key != self.project.project_key:
33-
logging.debug("New ref is in project %s, exposing it to project %s" % (new_loc.project_key, self.project.project_key))
33+
logging.info("New ref is in project %s, exposing it to project %s" % (new_loc.project_key, self.project.project_key))
3434
new_ref_src_project = self.client.get_project(new_loc.project_key)
3535
settings = new_ref_src_project.get_settings()
3636
settings.add_exposed_object(type, new_loc.object_id, self.project.project_key)
@@ -39,7 +39,7 @@ def replace_input_computable(self, current_ref, new_ref, type="DATASET"):
3939
for recipe in self.project.list_recipes():
4040
fake_rap = DSSRecipeDefinitionAndPayload({"recipe" : recipe})
4141
if fake_rap.has_input(current_ref):
42-
logging.debug("Recipe %s has %s as input, performing the replacement by %s"% \
42+
logging.info("Recipe %s has %s as input, performing the replacement by %s"% \
4343
(recipe["name"], current_ref, new_ref))
4444
recipe_obj = self.project.get_recipe(recipe["name"])
4545
dap = recipe_obj.get_definition_and_payload()

0 commit comments

Comments
 (0)