Bump up Logboard to 2.3.0

This commit is contained in:
shogo4405 2022-09-13 09:44:23 +09:00
parent b9ad7f0d3b
commit 8ccbf02ccc
6 changed files with 7 additions and 7 deletions

View File

@ -1 +1 @@
github "shogo4405/Logboard" ~> 2.2.2
github "shogo4405/Logboard" ~> 2.3.0

View File

@ -3,7 +3,7 @@ import HaishinKit
import Logboard
import UIKit
let logger = Logboard.with("com.haishinkit.Exsample.iOS")
let logger = LBLogger.with("com.haishinkit.Exsample.iOS")
@UIApplicationMain
final class AppDelegate: UIResponder, UIApplicationDelegate {

View File

@ -3,7 +3,7 @@ import Logboard
import ReplayKit
import VideoToolbox
let logger = Logboard.with("com.haishinkit.Exsample.iOS.Screencast")
let logger = LBLogger.with("com.haishinkit.Exsample.iOS.Screencast")
@available(iOS 10.0, *)
open class SampleHandler: RPBroadcastSampleHandler {
@ -34,7 +34,7 @@ open class SampleHandler: RPBroadcastSampleHandler {
logger.appender = socket
*/
logger.level = .debug
Logboard.with(HaishinKitIdentifier).level = .trace
LBLogger.with(HaishinKitIdentifier).level = .trace
rtmpConnection.connect(Preference.defaultInstance.uri!, arguments: nil)
}

View File

@ -26,6 +26,6 @@ Pod::Spec.new do |s|
s.tvos.source_files = "Platforms/tvOS/*.{h,swift}"
s.source_files = "Sources/**/*.swift"
s.dependency 'Logboard', '~> 2.2.2'
s.dependency 'Logboard', '~> 2.3.0'
end

View File

@ -13,7 +13,7 @@ let package = Package(
.library(name: "HaishinKit", targets: ["HaishinKit"])
],
dependencies: [
.package(url: "https://github.com/shogo4405/Logboard.git", from: "2.2.2")
.package(url: "https://github.com/shogo4405/Logboard.git", from: "2.3.0")
],
targets: [
.target(name: "SwiftPMSupport"),

View File

@ -4,4 +4,4 @@ import Logboard
import SwiftPMSupport
#endif
let logger = Logboard.with(HaishinKitIdentifier)
let logger = LBLogger.with(HaishinKitIdentifier)