chore: Lower logs level of native implementation noSuchMethod
Otherwise it would spam in the production logs all the time
This commit is contained in:
parent
fc1146fe94
commit
296b193c1d
|
|
@ -57,7 +57,7 @@ abstract class NativeImplementations {
|
||||||
final dynamic argument = invocation.positionalArguments.single;
|
final dynamic argument = invocation.positionalArguments.single;
|
||||||
final memberName = invocation.memberName.toString().split('"')[1];
|
final memberName = invocation.memberName.toString().split('"')[1];
|
||||||
|
|
||||||
Logs().w(
|
Logs().d(
|
||||||
'Missing implementations of Client.nativeImplementations.$memberName. '
|
'Missing implementations of Client.nativeImplementations.$memberName. '
|
||||||
'You should consider implementing it. '
|
'You should consider implementing it. '
|
||||||
'Fallback from NativeImplementations.dummy used.',
|
'Fallback from NativeImplementations.dummy used.',
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue