From 296b193c1d3579b380a7572f33142ec8b1b12cd3 Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Fri, 28 Oct 2022 12:45:27 +0200 Subject: [PATCH] chore: Lower logs level of native implementation noSuchMethod Otherwise it would spam in the production logs all the time --- lib/src/utils/native_implementations.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/utils/native_implementations.dart b/lib/src/utils/native_implementations.dart index b2010eec..9faf431c 100644 --- a/lib/src/utils/native_implementations.dart +++ b/lib/src/utils/native_implementations.dart @@ -57,7 +57,7 @@ abstract class NativeImplementations { final dynamic argument = invocation.positionalArguments.single; final memberName = invocation.memberName.toString().split('"')[1]; - Logs().w( + Logs().d( 'Missing implementations of Client.nativeImplementations.$memberName. ' 'You should consider implementing it. ' 'Fallback from NativeImplementations.dummy used.',