From c6443c477fbccdd84e3728b29657977eb7df2e75 Mon Sep 17 00:00:00 2001 From: Claus Date: Wed, 10 Jan 2018 11:13:28 +0100 Subject: [PATCH] no need to log when throwing - that gets logged. --- src/Umbraco.Web/Editors/TourController.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Umbraco.Web/Editors/TourController.cs b/src/Umbraco.Web/Editors/TourController.cs index 2addf0b07e..5e43b56159 100644 --- a/src/Umbraco.Web/Editors/TourController.cs +++ b/src/Umbraco.Web/Editors/TourController.cs @@ -75,12 +75,10 @@ namespace Umbraco.Web.Editors } catch (IOException e) { - Logger.Error("Error while trying to read file: " + tourFile, e); throw new IOException("Error while trying to read file: " + tourFile, e); } catch (JsonReaderException e) { - Logger.Error("Error while trying to parse content as tour data: " + tourFile, e); throw new JsonReaderException("Error while trying to parse content as tour data: " + tourFile, e); } }