Skip to content

Commit

Permalink
Update log.py
Browse files Browse the repository at this point in the history
  • Loading branch information
AAriam committed Jan 23, 2024
1 parent e421ad4 commit 59a0e23
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/actionman/log.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ def __init__(
symbol_error: str = "⛔",
symbol_warning: str = "🚨",
symbol_attention: str = "❗",
symbol_info: str = "ℹ️",
symbol_input: str = "📥",
symbol_output: str = "📤",
symbol_debug: str = "🐞",
entry_seperator_top: str = "="*35,
entry_seperator_bottom: str = "="*35,
entry_seperator_title: str = "-"*30,
Expand Down Expand Up @@ -56,6 +60,10 @@ def __init__(
"error": symbol_error,
"warning": symbol_warning,
"attention": symbol_attention,
"info": symbol_info,
"input": symbol_input,
"output": symbol_output,
"debug": symbol_debug,
}
self._entry_seperator_top = entry_seperator_top
self._entry_seperator_bottom = entry_seperator_bottom
Expand Down

0 comments on commit 59a0e23

Please sign in to comment.