Consider migrating from a simple void Function(String) for logging, and use the full Logger API.
- Currently, users of this package have no way of filtering logs (e.g., by severity)
- Using
Logger would provide a sane default configuration, instead of print()
- The logs would contain exceptions and stack traces
Consider migrating from a simple
void Function(String)for logging, and use the fullLoggerAPI.Loggerwould provide a sane default configuration, instead ofprint()