From 378a068a29f24f31f0336ec499416d14e5bab928 Mon Sep 17 00:00:00 2001 From: mertalev <101130780+mertalev@users.noreply.github.com> Date: Thu, 5 Feb 2026 13:54:41 -0500 Subject: [PATCH] redundant logging --- .../lib/infrastructure/repositories/network.repository.dart | 4 ---- 1 file changed, 4 deletions(-) diff --git a/mobile/lib/infrastructure/repositories/network.repository.dart b/mobile/lib/infrastructure/repositories/network.repository.dart index 60c9363c28..9bf57b9120 100644 --- a/mobile/lib/infrastructure/repositories/network.repository.dart +++ b/mobile/lib/infrastructure/repositories/network.repository.dart @@ -4,12 +4,10 @@ import 'dart:io'; import 'package:cupertino_http/cupertino_http.dart'; import 'package:http/http.dart' as http; import 'package:immich_mobile/providers/infrastructure/platform.provider.dart'; -import 'package:logging/logging.dart'; import 'package:ok_http/ok_http.dart'; import 'package:web_socket/web_socket.dart'; class NetworkRepository { - static final _log = Logger('NetworkRepository'); static http.Client? _client; static late int _clientPointer; @@ -45,13 +43,11 @@ class NetworkRepository { static http.Client _createIOSClient(int address) { final pointer = Pointer.fromAddress(address); final session = URLSession.fromRawPointer(pointer.cast()); - _log.info('Using shared native URLSession'); return CupertinoClient.fromSharedSession(session); } static http.Client _createAndroidClient(int address) { final pointer = Pointer.fromAddress(address); - _log.info('Using shared native OkHttpClient'); return OkHttpClient.fromJniGlobalRef(pointer); }