Skip to content

Commit

Permalink
fix(backend): fixes the debug line, fstring not working
Browse files Browse the repository at this point in the history
  • Loading branch information
mmabrouk committed Dec 6, 2024
1 parent c6ec222 commit bb56d5e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions agenta-backend/agenta_backend/services/app_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,12 @@ async def start_variant(

try:
logger.debug(
"Starting variant %s with image name %s and tags %s and app_name %s and organization %s and workspace %s",
"Starting variant %s with image name %s and tags %s and app_name %s",
db_app_variant.variant_name,
db_app_variant.image.docker_id,
db_app_variant.image.tags,
db_app_variant.app.app_name,
)
logger.debug("App name is %s", db_app_variant.app.app_name)
# update the env variables
domain_name = os.environ.get("DOMAIN_NAME")
if domain_name is None or domain_name == "http://localhost":
Expand Down

0 comments on commit bb56d5e

Please sign in to comment.