KenLogger
KenLogger is a simple and colorful console logger for Dart and Flutter CLI apps.
Features
- ✅ Log types:
error,info,success,warning - 🎨 Colored output in supported terminals
- 📦 Easy to use static methods
Preview

Installation
dart pub add ken_logger
Usage
Import the package and use its static logging methods:
import 'package:ken_logger/ken_logger.dart';
void main() {
KenLogger.success('Success example');
KenLogger.info('Info example');
KenLogger.warning('Warning example');
KenLogger.error('Error example');
}
Additional Information
For more details about KenLogger, including usage instructions and updates, please visit the GitHub repository.
Contributing
Contributions are welcome! If you'd like to improve the package, please fork the repository, make your changes, and submit a pull request. For major changes, please open an issue first to discuss what you would like to change.
Reporting Issues
If you encounter any bugs or have feature requests, please file an issue on the GitHub Issues page. Provide as much detail as possible to help us address the problem promptly.
Support and Response
We strive to respond to issues and pull requests in a timely manner. While this package is maintained voluntarily, we appreciate your patience and community involvement.
Thank you for using KenLogger!