From 23a7dae60624ca41c79c11b8d48c13dd22469d1a Mon Sep 17 00:00:00 2001 From: Cheick Keita Date: Sun, 24 Jul 2022 19:47:46 -0700 Subject: [PATCH] fix log level (#2185) --- src/ApiService/ApiService/Functions/TimerProxy.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ApiService/ApiService/Functions/TimerProxy.cs b/src/ApiService/ApiService/Functions/TimerProxy.cs index 61cae2948..a230101a6 100644 --- a/src/ApiService/ApiService/Functions/TimerProxy.cs +++ b/src/ApiService/ApiService/Functions/TimerProxy.cs @@ -38,7 +38,7 @@ public class TimerProxy { } if (VmStateHelper.NeedsWork.Contains(proxy.State)) { - _logger.Error($"scaleset-proxy: update state. proxy:{proxy.Region} state:{proxy.State}"); + _logger.Info($"scaleset-proxy: update state. proxy:{proxy.Region} state:{proxy.State}"); await proxyOperations.ProcessStateUpdate(proxy); }