prettify startup messages

This commit is contained in:
Lincoln Stein
2023-07-20 22:45:35 -04:00
parent 85ef3f51e7
commit 9370572169
4 changed files with 7 additions and 5 deletions

View File

@ -58,7 +58,8 @@ class ApiDependencies:
@staticmethod
def initialize(config: InvokeAIAppConfig, event_handler_id: int, logger: Logger = logger):
logger.debug(f"InvokeAI version {__version__}")
logger.info(f"InvokeAI version {__version__}")
logger.info(f"Root directory = {str(config.root_path)}")
logger.debug(f"Internet connectivity is {config.internet_available}")
events = FastAPIEventService(event_handler_id)