Skip to content

Commit 7edc551

Browse files
committed
Change failed retrieval of subscription recipes log to warning
1 parent 667723b commit 7edc551

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sagemaker-train/src/sagemaker/train/common_utils/finetune_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ def _get_fine_tuning_options_and_model_arn(model_name: str, customization_techni
525525
v_copy['default'] = None # No default — won't appear in to_dict() unless set
526526
options_dict[k] = v_copy
527527
except Exception as e:
528-
logger.debug(f"Could not fetch subscription recipe override_params: {type(e).__name__}: {e}")
528+
logger.warning(f"Could not fetch subscription recipe override_params: {type(e).__name__}: {e}")
529529

530530
if options_dict:
531531
return FineTuningOptions(options_dict), model_arn, is_gated_model

0 commit comments

Comments
 (0)