diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/operations/_job_operations.py b/sdk/ml/azure-ai-ml/azure/ai/ml/operations/_job_operations.py index 40629a93034c..a3b90e20b8c9 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/operations/_job_operations.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/operations/_job_operations.py @@ -1291,7 +1291,7 @@ def _resolve_job_input(self, entry: Union[Input, str, bool, int, float], base_pa # path can be empty if the job was created from builder functions if isinstance(entry, Input) and not entry.path: - msg = "Input path can't be empty for jobs." + msg = "Input path can't be empty for jobs. Input entry: {}".format(entry) raise ValidationException( message=msg, target=ErrorTarget.JOB,