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); } }