Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,16 @@ let package = Package(
targets: ["StreamChatTestMockServer"]
)
],
dependencies: [
.package(url: "https://github.com/apple/swift-docc-plugin", exact: "1.0.0"),
.package(url: "https://github.com/GetStream/stream-core-swift.git", exact: "0.3.0")
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Update before merging

],
targets: [
.target(
name: "StreamChat",
dependencies: [
.product(name: "StreamCore", package: "stream-core-swift")
],
exclude: ["Info.plist"],
resources: [.copy("Database/StreamChatModel.xcdatamodeld")]
),
Expand All @@ -55,7 +62,3 @@ let package = Package(
)
]
)

package.dependencies.append(
.package(url: "https://github.com/apple/swift-docc-plugin", exact: "1.0.0")
)
10 changes: 10 additions & 0 deletions Sources/StreamChat/Extensions/StreamCore+Extensions.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
//
// Copyright © 2025 Stream.io Inc. All rights reserved.
//

import Foundation
import StreamCore

public var log: Logger {
LogConfig.logger
}
128 changes: 0 additions & 128 deletions Sources/StreamChat/Utils/Logger/Destination/BaseLogDestination.swift

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading
Loading