mirror of
https://github.com/n00mkrad/flowframes.git
synced 2025-12-25 04:39:25 +01:00
AreImagesCompatible logging improvements/fixes
This commit is contained in:
@@ -134,7 +134,7 @@ namespace Flowframes.Media
|
||||
|
||||
if (!allSameExtension)
|
||||
{
|
||||
Logger.Log("Sequence not compatible: Not all files have the same extension [{sw.GetElapsedStr()}].", true);
|
||||
Logger.Log($"Sequence not compatible: Not all files have the same extension.", true);
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -142,7 +142,7 @@ namespace Flowframes.Media
|
||||
|
||||
if (!allValidExtension)
|
||||
{
|
||||
Logger.Log($"Sequence not compatible: Not all files have a valid extension ({string.Join(", ", validExtensions)}) [{sw.GetElapsedStr()}].", true);
|
||||
Logger.Log($"Sequence not compatible: Not all files have a valid extension ({string.Join(", ", validExtensions)}).", true);
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -152,7 +152,7 @@ namespace Flowframes.Media
|
||||
|
||||
if (!allSameSize)
|
||||
{
|
||||
Logger.Log("Sequence not compatible: Not all images have the same dimensions [{sw.GetElapsedStr()}].", true);
|
||||
Logger.Log($"Sequence not compatible: Not all images have the same dimensions [{sw.GetElapsedStr()}].", true);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user