More logging cleanup for CLI usage

This commit is contained in:
n00mkrad
2026-01-29 12:13:08 +01:00
parent a665a4300e
commit 7aa0a2f70e
14 changed files with 32 additions and 24 deletions

View File

@@ -19,7 +19,7 @@ namespace Flowframes.Media
if (filesize > 0 && cache.ContainsKey(hash))
{
Size cachedVal = cache[hash];
Logger.Log($"Resolution of '{Path.GetFileName(path)}': {cachedVal.Width}x{cachedVal.Height} [Cached]", true);
Logger.Log($"Resolution of '{Path.GetFileName(path)}': {cachedVal.Width}x{cachedVal.Height} [Cached]", true, toConsole: Cli.Verbose);
return cachedVal;
}