Skip to content
Merged
Changes from all 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
8 changes: 5 additions & 3 deletions TidepoolServiceKit/TidepoolService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,10 @@ public protocol SessionStorage {
}

public final class TidepoolService: Service, TAPIObserver, ObservableObject {

public static let pluginIdentifier = "TidepoolService"

public static let serviceIdentifier: String = "TidepoolService"

public var pluginIdentifier: String { Self.serviceIdentifier }

public static let localizedTitle = LocalizedString("Tidepool", comment: "The title of the Tidepool service")

Expand Down Expand Up @@ -66,7 +68,7 @@ public final class TidepoolService: Service, TAPIObserver, ObservableObject {
private var hostIdentifier: String?
private var hostVersion: String?

private let log = OSLog(category: pluginIdentifier)
private let log = OSLog(category: "TidepoolService")
private let tidepoolKitLog = OSLog(category: "TidepoolKit")

public init(hostIdentifier: String, hostVersion: String) {
Expand Down