diff --git a/src/CamBooth/CamBooth.App/Core/Camera/CameraService.cs b/src/CamBooth/CamBooth.App/Core/Camera/CameraService.cs index 910ec29..8bceefa 100644 --- a/src/CamBooth/CamBooth.App/Core/Camera/CameraService.cs +++ b/src/CamBooth/CamBooth.App/Core/Camera/CameraService.cs @@ -277,6 +277,7 @@ public class CameraService : IDisposable catch (Exception ex) { this.ReportError(ex.Message); + throw; } } diff --git a/src/CamBooth/CamBooth.App/LiveView/LiveViewPage.xaml.cs b/src/CamBooth/CamBooth.App/LiveView/LiveViewPage.xaml.cs index d62f667..75a9a99 100644 --- a/src/CamBooth/CamBooth.App/LiveView/LiveViewPage.xaml.cs +++ b/src/CamBooth/CamBooth.App/LiveView/LiveViewPage.xaml.cs @@ -71,7 +71,7 @@ public partial class LiveViewPage : Page } catch (Exception e) { - this._logger.Error(e.Message); + MessageBox.Show("Sorry, das hat leider nicht geklappt!"); } }