MCPcopy Index your code
hub / github.com/BasicProtein/AugmentCode-Free / print_info

Function print_info

augment_tools_core/common_utils.py:34–38  ·  view source on GitHub ↗

Prints an informational message (blue if colorama is available).

(message: str)

Source from the content-addressed store, hash-verified

32 print(f"{prefix} {message}")
33
34def print_info(message: str) -> None:
35 """Prints an informational message (blue if colorama is available)."""
36 prefix = "[INFO]"
37 color = Fore.BLUE if IS_COLORAMA_AVAILABLE else ""
38 print_message(prefix, message, color)
39
40def print_success(message: str) -> None:
41 """Prints a success message (green if colorama is available)."""

Callers 15

clean_ide_filesMethod · 0.85
_clean_global_storageMethod · 0.85
safe_delete_fileMethod · 0.85
_force_delete_fileMethod · 0.85
_windows_force_deleteMethod · 0.85
apply_patchMethod · 0.85
clean_ide_databaseFunction · 0.85

Calls 1

print_messageFunction · 0.85

Tested by

no test coverage detected