diff --git a/Agent/Services/AgentHubConnection.cs b/Agent/Services/AgentHubConnection.cs index 7210cc2a8..2c196d205 100644 --- a/Agent/Services/AgentHubConnection.cs +++ b/Agent/Services/AgentHubConnection.cs @@ -495,6 +495,9 @@ private void RegisterMessageHandlers() _hubConnection.On("WakeDevice", async (string macAddress) => { + _logger.LogInformation( + "Received request to wake device with MAC address {macAddress}.", + macAddress); await _wakeOnLanService.WakeDevice(macAddress); }); }