LoggerService class
Provides formatted console logging utilities used throughout FKIT.
Supports informational messages, warnings, errors, progress indicators, command output, and formatted console sections.
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
blank(
) → void - Prints an empty line to the console.
-
command(
String message) → void - Prints a formatted command execution message.
-
divider(
) → void - Prints a horizontal divider.
-
error(
String message) → void - Prints an error message.
-
headline(
String message) → void -
Prints a formatted headline containing the specified
message. -
info(
String message) → void - Prints an informational message.
-
progress(
String message) → void -
Starts a progress indicator with the specified
message. -
progressComplete(
[String? message]) → void - Completes the active progress indicator.
-
progressFail(
[String? message]) → void - Marks the active progress indicator as failed.
-
section(
String message) → void -
Prints a formatted section header containing the specified
message. -
success(
String message) → void - Prints a success message.
-
warning(
String message) → void - Prints a warning message.