forked from github/CopilotForXcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTelemetryLogger.swift
More file actions
42 lines (40 loc) · 1016 Bytes
/
TelemetryLogger.swift
File metadata and controls
42 lines (40 loc) · 1016 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import Logger
import Foundation
import TelemetryService
public class TelemetryLogger: TelemetryLoggerProvider {
public func sendError(
error: any Error,
category: String,
file: StaticString,
line: UInt,
function: StaticString,
callStackSymbols: [String]
) {
TelemetryService.shared.sendError(
error,
category: category,
file: file,
line: line,
function: function,
from: callStackSymbols
)
}
public func sendError(
message: String,
category: String,
file: StaticString,
line: UInt,
function: StaticString,
callStackSymbols: [String]
) {
TelemetryService.shared
.sendError(
message,
category: category,
file: file,
line: line,
function: function,
from: callStackSymbols
)
}
}