Fix logging
This commit is contained in:
parent
80e71d76a5
commit
6226f1a1c6
@ -5,6 +5,7 @@ import AppKit
|
|||||||
typealias SourceFile = (data: Data, didChange: Bool)
|
typealias SourceFile = (data: Data, didChange: Bool)
|
||||||
typealias SourceTextFile = (content: String, didChange: Bool)
|
typealias SourceTextFile = (content: String, didChange: Bool)
|
||||||
|
|
||||||
|
#warning("Skip external files")
|
||||||
final class FileSystem {
|
final class FileSystem {
|
||||||
|
|
||||||
private static let hashesFileName = "hashes.json"
|
private static let hashesFileName = "hashes.json"
|
||||||
@ -272,10 +273,10 @@ final class FileSystem {
|
|||||||
let scaledSize = scaledImage.size
|
let scaledSize = scaledImage.size
|
||||||
|
|
||||||
if abs(scaledImage.size.width - desiredWidth) > 2 {
|
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 {
|
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 {
|
if let desiredHeight = desiredHeight {
|
||||||
let desiredRatio = desiredHeight / desiredWidth
|
let desiredRatio = desiredHeight / desiredWidth
|
||||||
|
Loading…
Reference in New Issue
Block a user