Skip to content

Colorful logger that highlight flutter dart log print lines with ease.

License

Notifications You must be signed in to change notification settings

AlexMuriithi/colorful_logger

Repository files navigation

Colorful Logger

License

Colorful logger that highlight log print lines.

Usage

Print debug logs with colorful highlights

ColorfulLogger.e("this is an error");
ColorfulLogger.i("this is info");
ColorfulLogger.n("this is normal text");
ColorfulLogger.s("this is success");
ColorfulLogger.w("this is a warning");

will print

$\textcolor{red}{\text{- - - this is an error - - -}}$

$\textcolor{blue}{\text{- - - this is info - - -}}$

$\textcolor{gray}{\text{- - - this is normal text - - -}}$

$\textcolor{green}{\text{- - - this is success - - -}}$

$\textcolor{yellow}{\text{- - - this is warning - - -}}$

Contributing

We accept the following contributions:

  • Improving documentation
  • Reporting issues
  • Fixing bugs

We don't accept new functionality changes at the moment.

Maintainers

  • Alex Muriithi