Closed grosch closed 6 years ago
My Package.resolved says I'm using this:
{ "package": "FluentPostgreSQL", "repositoryURL": "https://github.com/vapor/fluent-postgresql.git", "state": { "branch": null, "revision": "e7011affaac21c60ce417139a376be8f21fd5815", "version": "1.0.0-rc.2.1.1" } },
When I try and compile I'm getting errors in PostgreSQLDatabase+LogSupporting.swift saying that there's no member 'logger', plus a bunch of other errors
This is my Package.swift:
// swift-tools-version:4.0 import PackageDescription let package = Package( name: "dts", dependencies: [ .package(url: "https://github.com/vapor/vapor.git", from: "3.0.0-rc.2"), .package(url: "https://github.com/vapor/fluent-postgresql.git", from: "1.0.0-rc"), .package(url: "https://github.com/vapor/leaf.git", from: "3.0.0-rc.2") ], targets: [ .target(name: "App", dependencies: ["FluentPostgreSQL", "Vapor", "Leaf"]), .target(name: "Run", dependencies: ["App"]), .testTarget(name: "AppTests", dependencies: ["App"]) ] )
I've done a clean, removed DerivedData directory, ran vapor update, and then regenerated and built the project.
The logger property has been moved to PostgreSQLConnection.
logger
PostgreSQLConnection
My Package.resolved says I'm using this:
When I try and compile I'm getting errors in PostgreSQLDatabase+LogSupporting.swift saying that there's no member 'logger', plus a bunch of other errors
This is my Package.swift:
I've done a clean, removed DerivedData directory, ran vapor update, and then regenerated and built the project.