Skip to content

Commit 13efce6

Browse files
author
adamsfliu
committed
【RoomKit】【iOS】Fixed the issue with the LiveKit field in the RoomKitLog.swift file
1 parent 1779327 commit 13efce6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

room/Source/Base/Log/RoomKitLog.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import Foundation
1212
import TXLiteAVSDK_Professional
1313
#endif
1414

15-
public class LiveKitLog {
15+
public class RoomKitLog {
1616
private static let API = "TuikitLog"
1717
private static let LOG_KEY_API = "api"
1818
private static let LOG_KEY_PARAMS = "params"
@@ -24,7 +24,7 @@ public class LiveKitLog {
2424
private static let LOG_KEY_PARAMS_MODULE_VALUE = "RoomKit"
2525

2626
private func `init`() {}
27-
enum LiveKitLogLevel: Int {
27+
enum RoomKitLogLevel: Int {
2828
case error = 2
2929
case warn = 1
3030
case info = 0
@@ -42,7 +42,7 @@ public class LiveKitLog {
4242
log(level: .info, file: file, line: String(line), messages)
4343
}
4444

45-
private static func log(level: LiveKitLogLevel = .info, file: String, line: String, _ messages: [String]) {
45+
private static func log(level: RoomKitLogLevel = .info, file: String, line: String, _ messages: [String]) {
4646
let apiParams: [String: Any] = [
4747
LOG_KEY_API: API,
4848
LOG_KEY_PARAMS: [

0 commit comments

Comments
 (0)