diff --git a/TeslaSolarCharger/Server/Services/PvValueService.cs b/TeslaSolarCharger/Server/Services/PvValueService.cs index 06f64d63c..aa1f565f7 100644 --- a/TeslaSolarCharger/Server/Services/PvValueService.cs +++ b/TeslaSolarCharger/Server/Services/PvValueService.cs @@ -98,7 +98,7 @@ public async Task UpdatePvValues() patternType, xmlAttributeHeaderName, xmlAttributeHeaderValue, xmlAttributeValueName).ConfigureAwait(false); if (inverterPower < 0) { - _logger.LogWarning("Inverterpower is below 0: {inverterPower}, using -1 for further purposes", inverterPower); + _logger.LogInformation("Inverterpower is below 0: {inverterPower}, using -1 for further purposes", inverterPower); inverterPower = -1; } _settings.InverterPower = inverterPower;