diff --git a/src/great_ai/great_ai/constants.py b/src/great_ai/great_ai/constants.py index a912be8..3f92f7b 100644 --- a/src/great_ai/great_ai/constants.py +++ b/src/great_ai/great_ai/constants.py @@ -28,3 +28,4 @@ ONLINE_TAG_NAME = "online" SERVER_NAME = "GreatAI-Server" SE4ML_WEBSITE = "https://se-ml.github.io/practices/" +LIST_ITEM_PREFIX = " 🔩 " diff --git a/src/great_ai/great_ai/context.py b/src/great_ai/great_ai/context.py index 0747b04..e422cef 100644 --- a/src/great_ai/great_ai/context.py +++ b/src/great_ai/great_ai/context.py @@ -12,6 +12,7 @@ from .constants import ( DEFAULT_LARGE_FILE_CONFIG_PATHS, DEFAULT_TRACING_DATABASE_CONFIG_PATHS, ENV_VAR_KEY, + LIST_ITEM_PREFIX, PRODUCTION_KEY, SE4ML_WEBSITE, ) @@ -103,7 +104,7 @@ def configure( logger.info("Settings: configured ✅") for k, v in get_context().to_flat_dict().items(): - logger.info(f" 🔩 {k}: {v}") + logger.info(f"{LIST_ITEM_PREFIX}{k}: {v}") if not is_production and not disable_se4ml_banner: logger.warning(