From fbcfd2cecd687c7594cb686a356f754523311ba9 Mon Sep 17 00:00:00 2001 From: Razmig Sarkissian Date: Wed, 27 Mar 2024 13:51:24 +0100 Subject: [PATCH] remove firebase needs when production --- LeStorage/Utils/Logger.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LeStorage/Utils/Logger.swift b/LeStorage/Utils/Logger.swift index 43d26f1..fcc4fd7 100644 --- a/LeStorage/Utils/Logger.swift +++ b/LeStorage/Utils/Logger.swift @@ -7,7 +7,7 @@ import Foundation #if !DEBUG -import Firebase +//import Firebase #endif @objc public class Logger : NSObject { @@ -43,7 +43,7 @@ import Firebase #if DEBUG NSLogv("%@.%i.%@: %@", getVaList([fileName, line, function, message])) #else - Crashlytics.crashlytics().log(format: "%@.%i.%@: %@", arguments: getVaList([fileName, line, function, message])) + //Crashlytics.crashlytics().log(format: "%@.%i.%@: %@", arguments: getVaList([fileName, line, function, message])) #endif }