Change log level for plugin constructor timing message

Updated the log level for the plugin constructor cost message
from `LogInfo` to `LogDebug` to reduce verbosity in production
logs and make this information available primarily during
debugging sessions.
This commit is contained in:
Jack251970 2025-10-16 18:43:19 +08:00
parent bd880d304e
commit 68454a8a6e

View file

@ -108,7 +108,7 @@ namespace Flow.Launcher.Core.Plugin
});
metadata.InitTime += milliseconds;
PublicApi.Instance.LogInfo(ClassName, $"Constructor cost for <{metadata.Name}> is <{metadata.InitTime}ms>");
PublicApi.Instance.LogDebug(ClassName, $"Constructor cost for <{metadata.Name}> is <{metadata.InitTime}ms>");
}
if (erroredPlugins.Count > 0)