From 51cf097c8fbfe2381acc79f8a3c43241f438f676 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Thu, 19 Jan 2017 15:04:12 +0100 Subject: [PATCH] Removed logging when file is outside project path --- blender_cloud/flamenco/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/blender_cloud/flamenco/__init__.py b/blender_cloud/flamenco/__init__.py index fed7c92..b36388c 100644 --- a/blender_cloud/flamenco/__init__.py +++ b/blender_cloud/flamenco/__init__.py @@ -371,7 +371,6 @@ def _render_output_path( try: proj_rel = blendfile.parent.relative_to(project_path) except ValueError: - log.exception('Current file is outside of project path %s', project_path) return None rel_parts = proj_rel.parts[flamenco_job_output_strip_components:]