Don't log files that dont load throw error instead

remove swift-log dependency
This commit is contained in:
Adam Fowler
2021-03-18 15:25:46 +00:00
parent 4af21bb4cf
commit aa30dcbddf
4 changed files with 15 additions and 14 deletions

View File

@@ -8,13 +8,9 @@ let package = Package(
products: [
.library(name: "HummingbirdMustache", targets: ["HummingbirdMustache"]),
],
dependencies: [
.package(url: "https://github.com/apple/swift-log.git", from: "1.4.0"),
],
dependencies: [],
targets: [
.target(name: "HummingbirdMustache", dependencies: [
.product(name: "Logging", package: "swift-log"),
]),
.target(name: "HummingbirdMustache", dependencies: []),
.testTarget(name: "HummingbirdMustacheTests", dependencies: ["HummingbirdMustache"]),
]
)