Skip to content

Commit

Permalink
Add imports
Browse files Browse the repository at this point in the history
  • Loading branch information
mczachurski committed Feb 17, 2024
1 parent c4143d7 commit b2dae44
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 0 additions & 8 deletions Sources/ExtendedLogging/SentryFormatter.swift
Original file line number Diff line number Diff line change
@@ -1,14 +1,6 @@
import Foundation
import Logging

#if canImport(UIKit)
import UIKit
#endif

#if os(watchOS)
import WatchKit
#endif

public class SentryFormatter: LogFormatter {
public var metadata = Logger.Metadata() {
didSet {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
import Foundation

#if canImport(UIKit)
import UIKit
#endif

#if os(watchOS)
import WatchKit
#endif

internal struct EnvelopeOperatingSystem: Encodable {
let name: String
let version: String
Expand Down

0 comments on commit b2dae44

Please sign in to comment.