We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 675e3cd commit 92256aeCopy full SHA for 92256ae
lib/src/logger/logger_bridge.dart
@@ -17,7 +17,6 @@ class LoggerBridge {
17
18
/// Handle incoming method calls from native Swift/Java code
19
static Future<void> _handleMethodCall(MethodCall call) async {
20
- logInfo('[LoggerBridge] Received method call: ${call.method}');
21
try {
22
switch (call.method) {
23
case 'log':
@@ -46,8 +45,6 @@ class LoggerBridge {
46
45
47
final level = _convertLogLevel(levelRawValue);
48
49
- logInfo('[LoggerBridge] Processing log: level=$levelRawValue, message=$message');
50
-
51
if (_customLogger != null) {
52
_customLogger!.log(level, message);
53
} else {
0 commit comments