mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
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:
parent
bd880d304e
commit
68454a8a6e
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue