For specific reason I had to silence or pipe internal Logger.
It's not much exposed and end-up with something like this because
I rely on the quite common Logging package.
Surely you decided to limit reliance on external packages.
This can be documented or maybe updated in future release to simplify integration
in large system.
Thanks!
import 'package:mcp_dart/src/shared/logging.dart' as ignoreMCPLog;
ignoreMCPLog.Logger.setHandler((name, level, message) { ...});
For specific reason I had to silence or pipe internal Logger.
It's not much exposed and end-up with something like this because
I rely on the quite common Logging package.
Surely you decided to limit reliance on external packages.
This can be documented or maybe updated in future release to simplify integration
in large system.
Thanks!