From 7e3eb22c93130c1b625136430294c1a33c0b9917 Mon Sep 17 00:00:00 2001 From: dbuechel Date: Fri, 16 Aug 2019 10:42:53 +0200 Subject: [PATCH] SEBWIN-303: Improved status message for audio volume change. --- SafeExamBrowser.SystemComponents/Audio.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SafeExamBrowser.SystemComponents/Audio.cs b/SafeExamBrowser.SystemComponents/Audio.cs index 80b0bfd3..79630b01 100644 --- a/SafeExamBrowser.SystemComponents/Audio.cs +++ b/SafeExamBrowser.SystemComponents/Audio.cs @@ -148,7 +148,7 @@ namespace SafeExamBrowser.SystemComponents { var info = BuildInfoText(data.MasterVolume, data.Muted); - logger.Debug($"Volume {data.MasterVolume * 100}%, {(data.Muted ? "muted" : "unmuted")}"); + logger.Debug($"Volume is set to {data.MasterVolume * 100}%, audio device is {(data.Muted ? "muted" : "not muted")}."); foreach (var control in controls) {