Skip to content

Commit b535f11

Browse files
committed
update Dashboard content URL & Direct content URL logging level to info
1 parent 49de7fd commit b535f11

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

rsconnect/api.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -532,10 +532,8 @@ def emit_task_log(
532532
self.connect_server.handle_bad_response(app_config)
533533
app_dashboard_url = app_config.get("config_url")
534534
log_callback.info("Deployment completed successfully.")
535-
log_callback.info("\t Dashboard content URL: ")
536-
log_callback.debug(app_dashboard_url)
537-
log_callback.info("\t Direct content URL: ")
538-
log_callback.debug(self.state["deployed_info"]["app_url"])
535+
log_callback.info("\t Dashboard content URL: %s", app_dashboard_url)
536+
log_callback.info("\t Direct content URL: %s", self.state["deployed_info"]["app_url"])
539537

540538
return self
541539

0 commit comments

Comments
 (0)