We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49de7fd commit b535f11Copy full SHA for b535f11
rsconnect/api.py
@@ -532,10 +532,8 @@ def emit_task_log(
532
self.connect_server.handle_bad_response(app_config)
533
app_dashboard_url = app_config.get("config_url")
534
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"])
+ log_callback.info("\t Dashboard content URL: %s", app_dashboard_url)
+ log_callback.info("\t Direct content URL: %s", self.state["deployed_info"]["app_url"])
539
540
return self
541
0 commit comments