Fix logging

This commit is contained in:
Christoph Hagen 2022-08-28 11:15:59 +02:00
parent 80e71d76a5
commit 6226f1a1c6

View File

@ -5,6 +5,7 @@ import AppKit
typealias SourceFile = (data: Data, didChange: Bool)
typealias SourceTextFile = (content: String, didChange: Bool)
#warning("Skip external files")
final class FileSystem {
private static let hashesFileName = "hashes.json"
@ -272,10 +273,10 @@ final class FileSystem {
let scaledSize = scaledImage.size
if abs(scaledImage.size.width - desiredWidth) > 2 {
log.add(warning: "Desired width \(desiredWidth), is \(scaledSize.width))", source: destination)
log.add(warning: "Desired width \(desiredWidth), got \(scaledSize.width)", source: destination)
}
if abs(destinationSize.height - scaledImage.size.height) > 2 {
log.add(warning: "Desired height \(destinationSize.height), is \(scaledSize.height))", source: destination)
log.add(warning: "Desired height \(destinationSize.height), got \(scaledSize.height)", source: destination)
}
if let desiredHeight = desiredHeight {
let desiredRatio = desiredHeight / desiredWidth