Releases: aliasgar4558/isolate_logger
Releases · aliasgar4558/isolate_logger
Release list
v1.0.14
v1.0.14
✨ New
logIntoCustomFile— log any message as-is into your own file at a relative path:
IsolateLogger.instance.logIntoCustomFile(
filePath: "service_info/login_api_123.log",
message: "LOGIN_API :: 200 OK :: 785ms",
); // → AppLogs/service_info/login_api_123.logDirectories are auto-created, writes stay on the background isolate, and unsafe paths (.., .) are rejected.
🛠️ Improved
- ZIP export & date-based cleanup now handle nested folders (structure preserved in the ZIP).
- Dependencies updated; example app revamped with Material 3 UI.
- Test suite expanded to 80 tests, 100% coverage.
Full Changelog: v1.0.13...v1.0.14
v1.0.13
What's Changed
- macOS support added in example app & package dependencies upgraded to latest. by @aliasgar4558 in #1
New Contributors
- @aliasgar4558 made their first contribution via PR in #1
Full Changelog: v1.0.12...v1.0.13
v1.0.12
v1.0.11
1.0.11
- Log file extension can now be provided by the user using
logFileExtensionparameter while initialising the logger. - Friendly log timestamp format updated with milliseconds precision.
- Dependencies upgraded to latest.
- Documentation updated.