Skip to content

Commit

Permalink
- add a shared logger for the main app
Browse files Browse the repository at this point in the history
- bump dependencies in CI script
  • Loading branch information
simonmcl committed Nov 16, 2023
1 parent d145094 commit 51cf19f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
with:
languages: "swift"

- uses: mxcl/xcodebuild@v1.11.0
- uses: mxcl/xcodebuild@v2.0
with:
platform: ${{ matrix.platform }}
xcode: ${{ matrix.xcode }}
Expand Down
3 changes: 3 additions & 0 deletions Sources/KukaiCoreSwift/Extensions/OSLogs+categories.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,7 @@ public extension Logger {
static let taquitoService = Logger(subsystem: subsystem, category: "TaquitoService")
static let torus = Logger(subsystem: subsystem, category: "Torus")
static let ledger = Logger(subsystem: subsystem, category: "Ledger")

/// Used by the app importing this library
static let app = Logger(subsystem: subsystem, category: "app")
}

0 comments on commit 51cf19f

Please sign in to comment.