We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a14150b commit df96e49Copy full SHA for df96e49
Swift/Log.swift
@@ -20,9 +20,10 @@
20
import Foundation
21
import CouchbaseLiteSwift_Private
22
23
-internal class Log {
+public final class Log {
24
/// Writes a log message to all the enabled log sinks.
25
- internal static func log(domain: LogDomain, level: LogLevel, message: String) {
+ /// - Note: `Unsupported API` Internal used for testing purpose.
26
+ public static func log(domain: LogDomain, level: LogLevel, message: String) {
27
let cDomain = CBLLogDomain.init(rawValue: domain.rawValue)
28
let cLevel = CBLLogLevel(rawValue: UInt(level.rawValue))!
29
CBLLog.writeSwiftLog(cDomain, level: cLevel, message: message)
0 commit comments