| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /*
- * Copyright 2023 Google LLC
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- import Foundation
- import OSLog
- /// Base FirestoreLogger class
- /// Logging categories can be created by extending FirestoreLogger and defining a static FirestoreLogger var with your category
- ///
- /// ```
- /// extension FirestoreLogger {
- /// static var myCategory = FirestoreLogger(category: "myCategory")
- /// }
- /// ```
- ///
- /// To use your extension, call
- /// ```
- /// FirestoreLogger.myCategory.log(msg, vars)
- /// ```
- /// See ReferenceableObject.swift for the FirestoreLogger extension for an example
- @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
- class FirestoreLogger: OSLog {
- private let firestoreSubsystem = "com.google.firebase.firestore"
- init(category: String) {
- super.init(subsystem: firestoreSubsystem, category: category)
- }
- func debug(_ message: StaticString, _ args: CVarArg...) {
- os_log(message, log: self, type: .debug, args)
- }
- func info(_ message: StaticString, _ args: CVarArg...) {
- os_log(message, log: self, type: .info, args)
- }
- func log(_ message: StaticString, _ args: CVarArg...) {
- os_log(message, log: self, type: .default, args)
- }
- func error(_ message: StaticString, _ args: CVarArg) {
- os_log(message, log: self, type: .error, args)
- }
- func fault(_ message: StaticString, _ args: CVarArg) {
- os_log(message, log: self, type: .fault, args)
- }
- }
|