Skip to content

Commit

Permalink
refactor(env): Use -- to indicate no config found/loaded
Browse files Browse the repository at this point in the history
  • Loading branch information
rlaphoenix committed Apr 14, 2024
1 parent b4e2805 commit f521ced
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion devine/commands/env.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def env() -> None:
def info() -> None:
"""Displays information about the current environment."""
log = logging.getLogger("env")
log.info(f"[Config] : {config_path or config.directories.user_configs / config.filenames.root_config}")
log.info(f"[Config] : {config_path or '--'}")
log.info(f"[Cookies] : {config.directories.cookies}")
log.info(f"[WVDs] : {config.directories.wvds}")
log.info(f"[Cache] : {config.directories.cache}")
Expand Down

0 comments on commit f521ced

Please sign in to comment.