From 47001b754d3cdcd8f0f3e61634d0eb13ccc54bf5 Mon Sep 17 00:00:00 2001 From: Morgan Pretty Date: Thu, 9 May 2024 14:41:40 +1000 Subject: [PATCH] Added manual log calls for testing --- LibSession-Util | 2 +- SessionSnodeKit/LibSession/LibSession+Networking.swift | 2 ++ SessionUtilitiesKit/LibSession/LibSession.swift | 8 ++++++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/LibSession-Util b/LibSession-Util index 091b58f13..6744a7de2 160000 --- a/LibSession-Util +++ b/LibSession-Util @@ -1 +1 @@ -Subproject commit 091b58f134bb48377a9cf93b905b6235d54d6581 +Subproject commit 6744a7de2fdfcca739d7cda75f96a16d6e455914 diff --git a/SessionSnodeKit/LibSession/LibSession+Networking.swift b/SessionSnodeKit/LibSession/LibSession+Networking.swift index 684f6c399..30d257250 100644 --- a/SessionSnodeKit/LibSession/LibSession+Networking.swift +++ b/SessionSnodeKit/LibSession/LibSession+Networking.swift @@ -321,6 +321,8 @@ public extension LibSession { LibSession.updatePaths(cPathsPtr: pathsPtr, pathsLen: pathsLen) }, nil) + session_manual_log("Log after network init".cArray.nullTerminated()) + cachedNetwork = network return network } diff --git a/SessionUtilitiesKit/LibSession/LibSession.swift b/SessionUtilitiesKit/LibSession/LibSession.swift index 42cb15a8f..f524fb07e 100644 --- a/SessionUtilitiesKit/LibSession/LibSession.swift +++ b/SessionUtilitiesKit/LibSession/LibSession.swift @@ -19,12 +19,15 @@ public enum LibSession { extension LibSession { public static func addLogger() { - // Set the desired log levels first + // Set the default log level first (in case something has a warning or error) + session_logger_set_level_default(LOG_LEVEL_WARN) + + // Then set any explicit category log levels we have logLevels.forEach { cat, level in session_logger_set_level(cat.rawValue.cArray, level) } - // Add the logger + // Finally register the actual logger callback session_add_logger_full({ msgPtr, msgLen, _, _, lvl in guard let msg: String = String(pointer: msgPtr, length: msgLen, encoding: .utf8) else { return } @@ -44,6 +47,7 @@ extension LibSession { print(trimmedLog) #endif }) + session_manual_log("Test after logger added".cArray.nullTerminated()) } // MARK: - Internal